AnalÃsis de datos en SofaScore
Guillermo DÃaz Aguado
1. Introducción.¶
Actualmente los juegos "Fútbol Fantasy"/"Comunio" se han vuelto muy virales, estas aplicaciones están en todos los móviles de los aficionados al fútbol. Se basan en crear un equipo con jugadores de las grandes ligas y dependiendo del rendimiento de estos jugadores en sus partidos, recibirás una puntuación. Uno de los métodos de puntuación viene dado por las estadÃsticas de SofaScore.
El trabajo actual se basará en entender como funciona el formato e intentar encontrar los apartados mejores puntuados y qué jugadores serÃan los mejores para fichar.
He de decir que se me ha quedado bastante extenso intentando explicar todo, es por ello que he dejado en ROJO las partes del trabajo exigidas y que tal vez no se vean de primeras.
import numpy as np
from botasaurus.request import request, Request
from botasaurus_requests.response import Response
import json
from typing import Union, Sequence
from pymongo import MongoClient
import matplotlib.pyplot as plt
from scipy.stats import norm
2. Scrapear datos¶
Lo primero que necesitaremos para analizar los datos será extraer los datos de los partidos y de los jugadores de la liga que utilizaremos de referencia. Como tenemos en nuestro paÃs una de las ligas más importantes (por no decir la más importante), utilizaremos dicho torneo español llamado La Liga y debido a que mi ordenador no es de los más potentes, utilizaremos los datos de la temporada actual, la temporada 24/25 que no lleva una gran cantidad de partidos pero en mi opinion si que son suficientes.
Para scrapear los datos he utilizado parte del código presentado por oseymour en su Github https://github.com/oseymour/ScraperFC
A continuación se presentan algunos datos iniciales para poder scrapear los datos de la API de SofaScore.
- Inicio de la URL para acceder a la API de SofaScore.
- Id de La Liga.
- Id de la temporada.
- Campos usados para calcular la puntuación.
- Competiciones disponibles en la API y su respectivo identifcador.
API_PREFIX = 'https://api.sofascore.com/api/v1'
league_id = "8" # Identificador de Laliga
season_id = "61643"
LEAGUE_STATS_FIELDS = [
'goals', 'yellowCards', 'redCards', 'groundDuelsWon', 'groundDuelsWonPercentage',
'aerialDuelsWon', 'aerialDuelsWonPercentage', 'successfulDribbles',
'successfulDribblesPercentage', 'tackles', 'assists', 'accuratePassesPercentage',
'totalDuelsWon', 'totalDuelsWonPercentage', 'minutesPlayed', 'wasFouled', 'fouls',
'dispossessed', 'possesionLost', 'appearances', 'started', 'saves', 'cleanSheets',
'savedShotsFromInsideTheBox', 'savedShotsFromOutsideTheBox',
'goalsConcededInsideTheBox', 'goalsConcededOutsideTheBox', 'highClaims',
'successfulRunsOut', 'punches', 'runsOut', 'accurateFinalThirdPasses',
'bigChancesCreated', 'accuratePasses', 'keyPasses', 'accurateCrosses',
'accurateCrossesPercentage', 'accurateLongBalls', 'accurateLongBallsPercentage',
'interceptions', 'clearances', 'dribbledPast', 'bigChancesMissed', 'totalShots',
'shotsOnTarget', 'blockedShots', 'goalConversionPercentage', 'hitWoodwork', 'offsides',
'expectedGoals', 'errorLeadToGoal', 'errorLeadToShot', 'passToAssist'
]
concatenated_fields = '%2C'.join(LEAGUE_STATS_FIELDS)
comps = {
# European continental club comps
'Champions League': 7, 'Europa League': 679, 'Europa Conference League': 17015,
# European domestic leagues
'EPL': 17, 'La Liga': 8, 'Bundesliga': 35, 'Serie A': 23, 'Ligue 1': 34,
# South America
'Argentina Liga Profesional': 155, 'Argentina Copa de la Liga Profesional': 13475,
'Liga 1 Peru': 406, "Copa Libertadores": 384,
# USA
'MLS': 242, 'USL Championship': 13363, 'USL1': 13362, 'USL2': 13546,
# Middle East
"Saudi Pro League": 955,
# Men's international comps
'World Cup': 16, 'Euros': 1, 'Gold Cup': 140,
# Women's international comps
"Women's World Cup": 290
}
Es momento de empezar a pensar que vamos a necesitar para analizar el rendimiento de todos los jugadores. Para tener una visión general del funcionamiento del algorÃtmo de SofaScore voy a tener en cuenta los siguientes valores. Esta lista está ordenada según el peso que pienso que puede llegar a tener cada campo en la puntuación individual de los jugadores.
- Rendimiento individual del jugador en cada partido.
- Minutos jugados por cada jugador en cada partido.
- Solo tendremos en cuenta los jugadores que hayan jugado más de 90 min en el partido evaluado.
- Rendimiento grupal del equipo del jugador en ese partido.
- Parece ser que si un equipo gana el partido, dicho jugador recibirá mas puntos.
Empezaremos scrapeando los datos de todos los partidos de esta temporada, para después guardarlos en nuestra base de datos. Como veremos en unos pasos, la mayorÃa de los datos recibidos por SofaScore son irrelevantes, asà que será mejor modificar está colección y generar una colección refinada con los datos más relevantes.
Scrapear datos de todos los partidos.¶
Todas las funciones presentadas en este trabajo para scrapear datos de la API tienen una fuerte influencia en el código de oseymour, pero además he hecho alguna modificación para quitar las partes innecesarias para mi proyecto y añadir otras partes.
La siguientes funciones están dedicadas a crear la reuqest y extraer de forma correcta los datos.
@request(output=None, create_error_logs=False)
def botasaurus_get(req: Request, url: str) -> Response:
""" General purpose "get" function that uses Botasaurus.
Parameters
----------
req : botasaurus.request.Request
The request object provided by the botasaurus decorator
url : str
The URL to request
Returns
-------
botasaurus_requests.response.Response
The response from the request
"""
if not isinstance(url, str):
raise TypeError('`url` must be a string.')
resp = req.get(url)
return resp
def get_valid_seasons(league: str) -> dict:
""" Returns the valid seasons and their IDs for the given league
Parameters
----------
league : str
League to get valid seasons for. See comps ScraperFC.Sofascore for valid leagues.
Returns
-------
seasons : dict
Available seasons for the league. {season string: season ID, ...}
"""
response = botasaurus_get(f'{API_PREFIX}/unique-tournament/{comps[league]}/seasons/')
seasons = dict([(x['year'], x['id']) for x in response.json()['seasons']])
return seasons
def get_match_dicts(year: str, league:str) -> Sequence[dict]:
""" Returns the matches from the Sofascore API for a given league season.
Parameters
----------
year : str
See the :ref:`sofascore_year` `year` parameter docs for details.
league : str
League to get valid seasons for. See comps ScraperFC.Sofascore for valid leagues.
Returns
-------
matches : list of dict
Each element being a single game of the competition
"""
valid_seasons = get_valid_seasons(league)
matches = list()
i = 0
while 1:
response = botasaurus_get(
f'{API_PREFIX}/unique-tournament/{comps[league]}/season/{valid_seasons[year]}/' +
f'events/last/{i}'
)
if response.status_code != 200:
break
matches += response.json()['events']
i += 1
return matches
partidos_en_temporada = get_match_dicts("24/25", "La Liga")
print(json.dumps(partidos_en_temporada, indent=4))
[
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "GgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 5,
"display": 5,
"period1": 3,
"period2": 2,
"normaltime": 5
},
"time": {
"injuryTime1": 5,
"injuryTime2": 2,
"currentPeriodStartTimestamp": 1733000959
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"awayScore.period2",
"awayScore.normaltime"
],
"changeTimestamp": 1733003837
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437720,
"startTimestamp": 1732996800,
"slug": "atletico-madrid-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "ugbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1733061749
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733065123
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437727,
"startTimestamp": 1733058000,
"slug": "girona-fc-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "Egbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 5,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1733070483
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733073500
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437724,
"startTimestamp": 1733066100,
"slug": "getafe-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "tgbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1733078008
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733081032
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437717,
"startTimestamp": 1733074200,
"slug": "athletic-club-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "qgbszgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1733087273
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733090161
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437722,
"startTimestamp": 1733083200,
"slug": "real-sociedad-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "vgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 0,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1733173338
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733176352
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437729,
"startTimestamp": 1733169600,
"slug": "sevilla-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 19
},
"customId": "rgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 5,
"display": 5,
"period1": 1,
"period2": 4,
"normaltime": 5
},
"time": {
"injuryTime1": 2,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1733252636
},
"changes": {
"changes": [
"time.injuryTime2"
],
"changeTimestamp": 1733255538
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437816,
"startTimestamp": 1733248800,
"slug": "mallorca-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 19
},
"customId": "AgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1733346300
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733349370
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437801,
"startTimestamp": 1733342400,
"slug": "real-madrid-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "wgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1733519087
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733522229
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437735,
"awayRedCards": 1,
"startTimestamp": 1733515200,
"slug": "mallorca-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "GgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1733580402
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733583662
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437740,
"startTimestamp": 1733576400,
"slug": "las-palmas-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "qgbsrgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1733588486
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733591774
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437745,
"startTimestamp": 1733584500,
"slug": "barcelona-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "tgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1733596571
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733599663
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437747,
"startTimestamp": 1733592600,
"slug": "valencia-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "EgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1733605451
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733608402
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437738,
"startTimestamp": 1733601600,
"slug": "girona-fc-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "zgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1733666631
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733669699
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437742,
"startTimestamp": 1733662800,
"slug": "leganes-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "ugbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1733674857
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733677925
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437731,
"startTimestamp": 1733670900,
"slug": "athletic-club-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "vgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 8,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1733683232
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733686385
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437750,
"startTimestamp": 1733679000,
"slug": "deportivo-alaves-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "IgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 1,
"period2": 3,
"normaltime": 4
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1733692161
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733695359
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437733,
"startTimestamp": 1733688000,
"slug": "atletico-madrid-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 16
},
"customId": "ogbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1733778144
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1733781088
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437752,
"startTimestamp": 1733774400,
"slug": "getafe-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "DgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1734124141
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734127334
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437773,
"homeRedCards": 1,
"startTimestamp": 1734120000,
"slug": "real-valladolid-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "ogbsvgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1734185073
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734188219
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437764,
"startTimestamp": 1734181200,
"slug": "osasuna-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "BgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1734193338
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734196350
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437771,
"homeRedCards": 1,
"startTimestamp": 1734189300,
"slug": "girona-fc-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "wgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1734201418
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734204606
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437769,
"startTimestamp": 1734197400,
"slug": "sevilla-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "tgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"time": {
"injuryTime1": 3,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1734210331
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734213494
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437759,
"startTimestamp": 1734206400,
"slug": "real-madrid-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "Lgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1734271602
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734274548
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437755,
"startTimestamp": 1734267600,
"slug": "getafe-atletico-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "AgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1734279437
},
"changes": {
"changes": [
"time.injuryTime2",
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734282394
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437762,
"startTimestamp": 1734275700,
"slug": "deportivo-alaves-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "zgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1734287749
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734290770
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437776,
"startTimestamp": 1734283800,
"slug": "las-palmas-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "qgbsugb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1734287690
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734290859
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437767,
"awayRedCards": 1,
"startTimestamp": 1734283800,
"slug": "villarreal-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 17
},
"customId": "rgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1734297006
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734300020
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437757,
"startTimestamp": 1734292800,
"slug": "leganes-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "ogbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1734557726
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734560764
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 13128822,
"startTimestamp": 1734553800,
"slug": "valencia-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "tgbsugb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1734557829
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734560872
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 13096804,
"homeRedCards": 1,
"startTimestamp": 1734553800,
"slug": "villarreal-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "DgbsEgb",
"status": {
"code": 60,
"description": "Postponed",
"type": "postponed"
},
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {},
"awayScore": {},
"time": {},
"changes": {
"changeTimestamp": 0
},
"hasGlobalHighlights": false,
"hasEventPlayerStatistics": false,
"hasEventPlayerHeatMap": false,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437653,
"startTimestamp": 1730577600,
"slug": "real-madrid-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "LgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1730642925
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730646184
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437637,
"startTimestamp": 1730638800,
"slug": "las-palmas-atletico-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "ogbsrgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 3,
"period2": 0,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 6,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1730651161
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730654066
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437658,
"startTimestamp": 1730646900,
"slug": "barcelona-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "zgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1730659026
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730662081
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437655,
"startTimestamp": 1730655000,
"slug": "sevilla-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "qgbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 0,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1730667750
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730670755
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437634,
"startTimestamp": 1730664000,
"slug": "athletic-club-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "wgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1730754466
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730757421
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437639,
"awayRedCards": 1,
"startTimestamp": 1730750400,
"slug": "getafe-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "tgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 5,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1731099992
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1731102992
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437680,
"startTimestamp": 1731096000,
"slug": "las-palmas-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "vgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 2,
"period2": 2,
"normaltime": 4
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 6,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1731161334
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731164246
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437678,
"startTimestamp": 1731157200,
"slug": "real-madrid-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "ugbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 6,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1731169421
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731172489
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437682,
"startTimestamp": 1731165300,
"slug": "deportivo-alaves-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "ogbsDgb",
"status": {
"code": 60,
"description": "Postponed",
"type": "postponed"
},
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {},
"awayScore": {},
"time": {},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734552483
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": false,
"hasEventPlayerHeatMap": false,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437668,
"startTimestamp": 1731173400,
"slug": "valencia-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "IgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 0,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1731186042
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731189113
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437666,
"awayRedCards": 1,
"startTimestamp": 1731182400,
"slug": "leganes-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "qgbswgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1731247585
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1731250717
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437660,
"startTimestamp": 1731243600,
"slug": "celta-vigo-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "BgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1731255589
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731258579
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437673,
"startTimestamp": 1731251700,
"slug": "atletico-madrid-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "AgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1731263837
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"time.injuryTime1",
"awayScore.period2",
"awayScore.normaltime"
],
"changeTimestamp": 1731266933
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437670,
"startTimestamp": 1731259800,
"slug": "real-valladolid-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "jhbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1731263785
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731266746
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437662,
"startTimestamp": 1731259800,
"slug": "girona-fc-getafe",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 13
},
"customId": "rgbszgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1731272819
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1731275823
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437675,
"startTimestamp": 1731268800,
"slug": "real-sociedad-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "Ggbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1732309616
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732312746
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437686,
"startTimestamp": 1732305600,
"slug": "getafe-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "qgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 1,
"period2": 3,
"normaltime": 4
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 6,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1732371192
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732374397
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437698,
"startTimestamp": 1732366800,
"slug": "valencia-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "LgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1732378993
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732382060
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437703,
"startTimestamp": 1732374900,
"slug": "deportivo-alaves-atletico-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "BgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 0,
"period2": 3,
"normaltime": 3
},
"time": {
"injuryTime1": 0,
"injuryTime2": 10,
"currentPeriodStartTimestamp": 1732386914
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732390270
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437691,
"awayRedCards": 1,
"startTimestamp": 1732383000,
"slug": "las-palmas-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "ogbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 4,
"period2": 0,
"normaltime": 4
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 2,
"currentPeriodStartTimestamp": 1732386999
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732389828
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437705,
"startTimestamp": 1732383000,
"slug": "girona-fc-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "rgbswgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1732395910
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732398927
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437696,
"awayRedCards": 1,
"startTimestamp": 1732392000,
"slug": "celta-vigo-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "ugbsvgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1732457310
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"awayScore.period2",
"awayScore.normaltime"
],
"changeTimestamp": 1732460384
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437688,
"startTimestamp": 1732453200,
"slug": "osasuna-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "tgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1732465214
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732468105
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437700,
"awayRedCards": 1,
"startTimestamp": 1732461300,
"slug": "sevilla-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "EgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1732473148
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732476093
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437693,
"startTimestamp": 1732469400,
"slug": "leganes-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 14
},
"customId": "zgbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1732482276
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732485223
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437685,
"startTimestamp": 1732478400,
"slug": "athletic-club-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "BgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1732914695
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732917644
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437710,
"startTimestamp": 1732910400,
"slug": "valencia-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "rgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1732975782
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732979004
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437708,
"startTimestamp": 1732971600,
"slug": "las-palmas-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "VgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1732983490
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732986569
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437712,
"startTimestamp": 1732979700,
"slug": "deportivo-alaves-leganes",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 15
},
"customId": "ogbswgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1732991800
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1732994800
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437715,
"startTimestamp": 1732987800,
"slug": "celta-vigo-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "wgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1728149869
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728153010
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437832,
"awayRedCards": 2,
"startTimestamp": 1728145800,
"slug": "las-palmas-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "ugbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1728158859
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728161984
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437813,
"startTimestamp": 1728154800,
"slug": "real-madrid-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "AgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1728220082
},
"changes": {
"changes": [
"time.injuryTime1"
],
"changeTimestamp": 1728267452
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437824,
"awayRedCards": 1,
"startTimestamp": 1728216000,
"slug": "girona-fc-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "rgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 3,
"period2": 0,
"normaltime": 3
},
"time": {
"injuryTime1": 5,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1728228058
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728230945
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437815,
"startTimestamp": 1728224100,
"slug": "deportivo-alaves-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "qgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1728236071
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728239223
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437828,
"homeRedCards": 1,
"startTimestamp": 1728232200,
"slug": "sevilla-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "zgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1728244987
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728247989
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437826,
"startTimestamp": 1728241200,
"slug": "atletico-madrid-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "GgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 3,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1729281783
},
"changes": {
"changes": [
"cardsCode",
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1729285095
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437849,
"homeRedCards": 1,
"startTimestamp": 1729278000,
"slug": "deportivo-alaves-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "ogbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 3,
"period2": 1,
"normaltime": 4
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1729343242
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"awayScore.period2",
"awayScore.normaltime"
],
"changeTimestamp": 1729346138
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437855,
"startTimestamp": 1729339200,
"slug": "athletic-club-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "qgbsvgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 3,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1729351164
},
"changes": {
"changes": [
"time.injuryTime2"
],
"changeTimestamp": 1729354771
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437851,
"awayRedCards": 1,
"startTimestamp": 1729347300,
"slug": "osasuna-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "zgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1729359308
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729362314
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437843,
"startTimestamp": 1729355400,
"slug": "girona-fc-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "wgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1729368266
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729371292
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437842,
"startTimestamp": 1729364400,
"slug": "real-madrid-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "tgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1729429527
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729432638
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437847,
"startTimestamp": 1729425600,
"slug": "mallorca-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "LgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 0,
"period2": 3,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1729437735
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1729441099
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437835,
"startTimestamp": 1729433700,
"slug": "leganes-atletico-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "ugbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1729445611
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729448626
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437852,
"startTimestamp": 1729441800,
"slug": "getafe-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "rgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 5,
"display": 5,
"period1": 3,
"period2": 2,
"normaltime": 5
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1729454963
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729457912
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437839,
"startTimestamp": 1729450800,
"slug": "sevilla-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 10
},
"customId": "DgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"time": {
"injuryTime1": 2,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1729541010
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729544262
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437854,
"homeRedCards": 1,
"startTimestamp": 1729537200,
"slug": "las-palmas-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "ogbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 11,
"currentPeriodStartTimestamp": 1729886682
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729890088
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437609,
"startTimestamp": 1729882800,
"slug": "sevilla-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "ugbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1729947827
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729950842
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437627,
"startTimestamp": 1729944000,
"slug": "real-valladolid-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "tgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1729956079
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729959158
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437630,
"homeRedCards": 1,
"startTimestamp": 1729952100,
"slug": "deportivo-alaves-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "CGcsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1729964247
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729967413
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437620,
"startTimestamp": 1729960200,
"slug": "girona-fc-las-palmas",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "rgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 4,
"display": 4,
"period1": 0,
"period2": 4,
"normaltime": 4
},
"time": {
"injuryTime1": 2,
"injuryTime2": 2,
"currentPeriodStartTimestamp": 1729973105
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1729975927
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437616,
"startTimestamp": 1729969200,
"slug": "real-madrid-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "wgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 0,
"period2": 3,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 0,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1730037715
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730040853
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437618,
"startTimestamp": 1730034000,
"slug": "leganes-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "Dgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1730045966
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730049705
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437607,
"startTimestamp": 1730042100,
"slug": "getafe-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "qgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1730054034
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730057158
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437613,
"startTimestamp": 1730050200,
"slug": "atletico-madrid-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "vgbszgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"time": {
"injuryTime1": 4,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1730063280
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730066295
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437625,
"startTimestamp": 1730059200,
"slug": "real-sociedad-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 11
},
"customId": "AgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 5,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1730149728
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730152748
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437611,
"homeRedCards": 1,
"startTimestamp": 1730145600,
"slug": "mallorca-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "BgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1730495028
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730498034
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437646,
"startTimestamp": 1730491200,
"slug": "deportivo-alaves-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "vgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 5,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1730556422
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730559415
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437644,
"startTimestamp": 1730552400,
"slug": "real-valladolid-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "VgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 2,
"period2": 2,
"normaltime": 4
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1730564517
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1730567731
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437641,
"startTimestamp": 1730560500,
"slug": "girona-fc-leganes",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 12
},
"customId": "tgbsugb",
"status": {
"code": 60,
"description": "Postponed",
"type": "postponed"
},
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {},
"awayScore": {},
"time": {},
"changes": {
"changes": [
"cardsCode",
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1734549394
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": false,
"hasEventPlayerHeatMap": false,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437651,
"startTimestamp": 1730568600,
"slug": "villarreal-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "vgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 7,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1726932252
},
"changes": {
"changes": [
"time.injuryTime2"
],
"changeTimestamp": 1726935348
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437753,
"startTimestamp": 1726928100,
"slug": "las-palmas-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "DgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 0,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726939988
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726943057
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437748,
"startTimestamp": 1726936200,
"slug": "girona-fc-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "ogbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 0,
"period2": 4,
"normaltime": 4
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726949191
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726952128
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437756,
"startTimestamp": 1726945200,
"slug": "real-madrid-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "Vgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727010372
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727013422
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437739,
"startTimestamp": 1727006400,
"slug": "getafe-leganes",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "wgbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1727018497
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727021390
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437734,
"startTimestamp": 1727014500,
"slug": "athletic-club-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "rgbsugb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 5,
"display": 5,
"period1": 2,
"period2": 3,
"normaltime": 5
},
"time": {
"injuryTime1": 4,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1727026667
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727029617
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437746,
"startTimestamp": 1727022600,
"slug": "villarreal-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "tgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1727035577
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727038477
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437744,
"startTimestamp": 1727031600,
"slug": "atletico-madrid-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "qgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 4,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1727122006
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"awayScore.period2",
"awayScore.normaltime"
],
"changeTimestamp": 1727125037
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437736,
"startTimestamp": 1727118000,
"slug": "mallorca-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "vgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1727201137
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727204052
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437779,
"startTimestamp": 1727197200,
"slug": "valencia-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "GgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1727201092
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727204227
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437766,
"homeRedCards": 1,
"startTimestamp": 1727197200,
"slug": "sevilla-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "EgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1727208335
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727211437
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437782,
"startTimestamp": 1727204400,
"slug": "deportivo-alaves-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "tgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727287588
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727290625
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437761,
"startTimestamp": 1727283600,
"slug": "girona-fc-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "rgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727294644
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727297651
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437758,
"startTimestamp": 1727290800,
"slug": "getafe-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "qgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1727374103
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727376995
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437777,
"startTimestamp": 1727370000,
"slug": "las-palmas-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "ogbsugb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 8,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727374447
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727377492
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437768,
"startTimestamp": 1727370000,
"slug": "villarreal-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "wgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1727381025
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727383975
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437774,
"startTimestamp": 1727377200,
"slug": "atletico-madrid-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "BgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727467501
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727470603
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437798,
"startTimestamp": 1727463600,
"slug": "real-valladolid-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "jhbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727528904
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727531921
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437803,
"startTimestamp": 1727524800,
"slug": "deportivo-alaves-getafe",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "tgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1727536809
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727539785
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437805,
"startTimestamp": 1727532900,
"slug": "leganes-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "zgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1727545039
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1727547982
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437792,
"startTimestamp": 1727541000,
"slug": "valencia-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "rgbsvgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 2,
"period2": 2,
"normaltime": 4
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1727553864
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727557003
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437795,
"startTimestamp": 1727550000,
"slug": "osasuna-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "wgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1727615057
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727618070
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437789,
"startTimestamp": 1727611200,
"slug": "girona-fc-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "AgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1727623182
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727626360
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437784,
"homeRedCards": 1,
"startTimestamp": 1727619300,
"slug": "sevilla-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "ogbsqgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1727631393
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1727634586
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437808,
"startTimestamp": 1727627400,
"slug": "real-betis-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "EgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 0,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1727640217
},
"changes": {
"changes": [
"cardsCode",
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1727644700
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437787,
"homeRedCards": 1,
"startTimestamp": 1727636400,
"slug": "atletico-madrid-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 8
},
"customId": "ugbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1727726688
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1727729994
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437800,
"startTimestamp": 1727722800,
"slug": "las-palmas-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "DgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1728072201
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728075091
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437818,
"startTimestamp": 1728068400,
"slug": "leganes-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "ogbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 11,
"currentPeriodStartTimestamp": 1728133490
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728136867
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437820,
"startTimestamp": 1728129600,
"slug": "mallorca-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "vgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1728141638
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728144662
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437810,
"startTimestamp": 1728137700,
"slug": "getafe-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 9
},
"customId": "tgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 0,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1728149528
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1728152597
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437833,
"startTimestamp": 1728145800,
"slug": "real-valladolid-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "AgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 3,
"currentPeriodStartTimestamp": 1724868230
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724871181
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437659,
"startTimestamp": 1724864400,
"slug": "valencia-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "zgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 6,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1724877729
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724880881
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437676,
"homeRedCards": 1,
"startTimestamp": 1724873400,
"slug": "deportivo-alaves-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "ogbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1724877412
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724880616
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437681,
"startTimestamp": 1724873400,
"slug": "atletico-madrid-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "vgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 1,
"period2": 3,
"normaltime": 4
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724954692
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724957760
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437664,
"startTimestamp": 1724950800,
"slug": "girona-fc-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "EgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1724963806
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724966810
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437669,
"startTimestamp": 1724959800,
"slug": "las-palmas-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "rgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 7,
"display": 7,
"period1": 3,
"period2": 4,
"normaltime": 7
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 2,
"currentPeriodStartTimestamp": 1725120376
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725123210
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437687,
"startTimestamp": 1725116400,
"slug": "real-valladolid-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "AgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 0,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1725127362
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725130492
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437684,
"startTimestamp": 1725123600,
"slug": "atletico-madrid-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "ogbstgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 6,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1725128612
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725131952
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437699,
"startTimestamp": 1725124500,
"slug": "rayo-vallecano-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "BgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1725136412
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725139363
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437697,
"startTimestamp": 1725132600,
"slug": "leganes-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "ugbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1725136711
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725139703
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437692,
"awayRedCards": 1,
"startTimestamp": 1725132600,
"slug": "valencia-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "KhbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1725206690
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725209702
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437694,
"startTimestamp": 1725202800,
"slug": "las-palmas-deportivo-alaves",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "vgbswgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1725206742
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725209753
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437704,
"awayRedCards": 1,
"startTimestamp": 1725202800,
"slug": "celta-vigo-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "IgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 3,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1725214037
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725217171
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437706,
"startTimestamp": 1725210000,
"slug": "girona-fc-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "zgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 5,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1725215191
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725218336
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437690,
"startTimestamp": 1725210900,
"slug": "getafe-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 4
},
"customId": "qgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1725223020
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1725226091
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437702,
"startTimestamp": 1725219000,
"slug": "real-madrid-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "qgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 5,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726258112
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726261244
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437711,
"startTimestamp": 1726254000,
"slug": "leganes-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "ugbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726319151
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726322281
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437716,
"homeRedCards": 1,
"startTimestamp": 1726315200,
"slug": "mallorca-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "ogbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726327196
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726330333
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437730,
"startTimestamp": 1726323300,
"slug": "deportivo-alaves-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "Igbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1726335516
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726339072
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437723,
"homeRedCards": 1,
"startTimestamp": 1726331400,
"slug": "getafe-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "zgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726344254
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726347208
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437728,
"startTimestamp": 1726340400,
"slug": "real-madrid-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "wgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1726405805
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726408936
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437714,
"awayRedCards": 1,
"startTimestamp": 1726401600,
"slug": "real-valladolid-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "rgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 4,
"display": 4,
"period1": 2,
"period2": 2,
"normaltime": 4
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726413806
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726416880
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437721,
"awayRedCards": 1,
"startTimestamp": 1726409700,
"slug": "girona-fc-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "AgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"time": {
"injuryTime1": 3,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726421910
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726424866
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437718,
"awayRedCards": 1,
"startTimestamp": 1726417800,
"slug": "las-palmas-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "DgbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726430777
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726433745
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437709,
"startTimestamp": 1726426800,
"slug": "atletico-madrid-valencia",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 5
},
"customId": "tgbsvgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 0,
"period2": 3,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 1,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1726517032
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1726520185
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437726,
"startTimestamp": 1726513200,
"slug": "osasuna-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "zgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726596303
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726599250
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437763,
"startTimestamp": 1726592400,
"slug": "mallorca-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "qgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1726682854
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726686101
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12778688,
"startTimestamp": 1726678800,
"slug": "getafe-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 7
},
"customId": "AgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1726769032
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726771985
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437772,
"startTimestamp": 1726765200,
"slug": "leganes-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "IgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1726862800
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726865814
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437741,
"startTimestamp": 1726858800,
"slug": "deportivo-alaves-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 6
},
"customId": "zgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1726923926
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1726927273
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437751,
"startTimestamp": 1726920000,
"slug": "real-valladolid-real-sociedad",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "Agbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"awayTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 7,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1723745352
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723748364
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437604,
"startTimestamp": 1723741200,
"slug": "getafe-athletic-club",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "qgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1723754151
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723757226
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437605,
"startTimestamp": 1723750200,
"slug": "girona-fc-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "wgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 8,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1723831876
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723835013
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437617,
"startTimestamp": 1723827600,
"slug": "deportivo-alaves-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "IgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 2,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1723840616
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723843759
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437608,
"startTimestamp": 1723836600,
"slug": "las-palmas-sevilla",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "vgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1723917918
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723920933
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437619,
"startTimestamp": 1723914000,
"slug": "leganes-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "rgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 5,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1723927249
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1723930413
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437612,
"startTimestamp": 1723923000,
"slug": "valencia-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "tgbszgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 1,
"injuryTime2": 7,
"currentPeriodStartTimestamp": 1724004356
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1724007610
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437615,
"startTimestamp": 1724000400,
"slug": "real-sociedad-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "BgbsEgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1724013441
},
"changes": {
"changes": [
"cardsCode",
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724016576
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437606,
"awayRedCards": 1,
"startTimestamp": 1724009400,
"slug": "real-madrid-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "ogbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724090867
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724093982
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437624,
"startTimestamp": 1724086800,
"slug": "real-valladolid-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 1
},
"customId": "ugbsLgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 2,
"period2": 0,
"normaltime": 2
},
"time": {
"injuryTime1": 5,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1724099873
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724102876
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437610,
"startTimestamp": 1724095800,
"slug": "atletico-madrid-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "wgbsDgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"awayTeam": {
"name": "Valencia",
"slug": "valencia",
"shortName": "Valencia",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 337284,
"nameCode": "VCF",
"disabled": false,
"national": false,
"type": 0,
"id": 2828,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"ru": "\u0412\u0430\u043b\u0435\u043d\u0441\u0438\u044f",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
},
"shortNameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u0633\u064a\u0627",
"hi": "\u0935\u0947\u0932\u0947\u0902\u0938\u093f\u092f\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 5,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724436634
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724439700
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437631,
"startTimestamp": 1724432400,
"slug": "valencia-celta-vigo",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "ugbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"awayTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"time": {
"injuryTime1": 6,
"injuryTime2": 9,
"currentPeriodStartTimestamp": 1724445906
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724449210
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437642,
"startTimestamp": 1724441400,
"slug": "sevilla-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "vgbsBgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Osasuna",
"slug": "osasuna",
"shortName": "Osasuna",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 211861,
"nameCode": "OSA",
"disabled": false,
"national": false,
"type": 0,
"id": 2820,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#14213d",
"text": "#14213d"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"ru": "\u041e\u0441\u0430\u0441\u0443\u043d\u0430",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0627\u0633\u0648\u0646\u0627",
"hi": "\u0913\u0938\u093e\u0938\u0941\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 3,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724515722
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724518825
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437656,
"startTimestamp": 1724511600,
"slug": "mallorca-osasuna",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "rgbsAgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"awayTeam": {
"name": "Athletic Club",
"slug": "athletic-club",
"shortName": "Athletic Club",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 487113,
"nameCode": "ATH",
"disabled": false,
"national": false,
"type": 0,
"id": 2825,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#aa0000",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a \u0411\u0438\u043b\u044c\u0431\u0430\u043e",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u0623\u062a\u0644\u064a\u062a\u064a\u0643",
"hi": "\u090f\u0925\u0932\u0947\u091f\u093f\u0915 \u0915\u094d\u0932\u092c"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 1,
"period2": 1,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"time": {
"injuryTime1": 6,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1724523039
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724526130
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437652,
"startTimestamp": 1724518800,
"slug": "athletic-club-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "tgbsjhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Getafe",
"slug": "getafe",
"shortName": "Getafe",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 206734,
"nameCode": "GET",
"disabled": false,
"national": false,
"type": 0,
"id": 2859,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#00369e",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"ru": "\u0425\u0435\u0442\u0430\u0444\u0435",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
},
"shortNameTranslation": {
"ar": "\u062e\u064a\u062a\u0627\u0641\u064a",
"hi": "\u0917\u0947\u091f\u093e\u092b\u0947"
}
}
},
"awayTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724531751
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724534825
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437636,
"startTimestamp": 1724527800,
"slug": "getafe-rayo-vallecano",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "ogbszgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Espanyol",
"slug": "espanyol",
"shortName": "Espanyol",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 129614,
"nameCode": "ESP",
"disabled": false,
"national": false,
"type": 0,
"id": 2814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#1369d2",
"text": "#1369d2"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"ru": "\u042d\u0441\u043f\u0430\u043d\u044c\u043e\u043b",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
},
"shortNameTranslation": {
"ar": "\u0627\u0633\u0628\u0627\u0646\u064a\u0648\u0644",
"hi": "\u090f\u0938\u094d\u092a\u0947\u0928\u092f\u094b\u0932"
}
}
},
"awayTeam": {
"name": "Real Sociedad",
"slug": "real-sociedad",
"shortName": "Real Sociedad",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 491454,
"nameCode": "RSO",
"disabled": false,
"national": false,
"type": 0,
"id": 2824,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#0077c7",
"text": "#0077c7"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0421\u043e\u0441\u044c\u0435\u0434\u0430\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0633\u0648\u0633\u064a\u062f\u0627\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0938\u094b\u0938\u093f\u092f\u0926\u093e\u0926"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1724531805
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724535039
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437650,
"startTimestamp": 1724527800,
"slug": "real-sociedad-espanyol",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "EgbsGgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Real Madrid",
"slug": "real-madrid",
"shortName": "Real Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 4266140,
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#004996",
"text": "#004996"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0645\u062f\u0631\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 0,
"period2": 3,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 6,
"currentPeriodStartTimestamp": 1724602133
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1724605245
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437638,
"startTimestamp": 1724598000,
"slug": "real-valladolid-real-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "VgbsCGc",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Las Palmas",
"slug": "las-palmas",
"shortName": "Las Palmas",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 151622,
"nameCode": "LPA",
"disabled": false,
"national": false,
"type": 0,
"id": 6577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#e8f541",
"secondary": "#f3f845",
"text": "#f3f845"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"ru": "\u041b\u0430\u0441-\u041f\u0430\u043b\u044c\u043c\u0430\u0441",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u0627\u0633 \u0628\u0627\u0644\u0645\u0627\u0633",
"hi": "\u0932\u093e\u0938 \u092a\u093e\u0932\u092e\u093e\u0938"
}
}
},
"homeScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"awayScore": {
"current": 1,
"display": 1,
"period1": 0,
"period2": 1,
"normaltime": 1
},
"time": {
"injuryTime1": 3,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1724609143
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724612425
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437647,
"startTimestamp": 1724605200,
"slug": "las-palmas-leganes",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "qgbsKhb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Deportivo Alav\u00e9s",
"slug": "deportivo-alaves",
"shortName": "Alav\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 152175,
"nameCode": "ALA",
"disabled": false,
"national": false,
"type": 0,
"id": 2885,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#0232a0",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0628\u0648\u0631\u062a\u064a\u0641\u0648 \u0623\u0644\u0627\u0641\u064a\u0633",
"ru": "\u0410\u043b\u0430\u0432\u0435\u0441",
"hi": "\u0921\u0947\u092a\u094b\u0930\u094d\u091f\u093f\u0935\u094b \u0905\u0932\u093e\u0935\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0623\u0644\u0627\u0641\u064a\u0633",
"hi": "\u0905\u0932\u093e\u0935\u0947\u0938"
}
}
},
"awayTeam": {
"name": "Real Betis",
"slug": "real-betis",
"shortName": "Real Betis",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 401610,
"nameCode": "RBB",
"disabled": false,
"national": false,
"type": 0,
"id": 2816,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#006633",
"text": "#006633"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u064a\u062a\u064a\u0633",
"ru": "\u0420\u0435\u0430\u043b \u0411\u0435\u0442\u0438\u0441",
"hi": "\u0930\u093f\u092f\u0932 \u092c\u0947\u091f\u093f\u0938"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062a\u064a\u0633",
"hi": "\u092c\u0947\u091f\u093f\u0938"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 0,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1724609786
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724612741
},
"hasGlobalHighlights": false,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437645,
"homeRedCards": 1,
"startTimestamp": 1724606100,
"slug": "deportivo-alaves-real-betis",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 2
},
"customId": "LgbsoKj",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Atl\u00e9tico Madrid",
"slug": "atletico-madrid",
"shortName": "Atl. Madrid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 1369466,
"nameCode": "ATM",
"disabled": false,
"national": false,
"type": 0,
"id": 2836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#c40000",
"text": "#c40000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062a\u0644\u062a\u064a\u0643\u0648 \u0645\u062f\u0631\u064a\u062f",
"ru": "\u0410\u0442\u043b\u0435\u0442\u0438\u043a\u043e \u041c\u0430\u0434\u0440\u0438\u0434",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0623\u062a\u0644. \u0645\u062f\u0631\u064a\u062f",
"hi": "\u090f\u091f\u0932\u0947\u091f\u093f\u0915\u094b \u092e\u0948\u0921\u094d\u0930\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Girona FC",
"slug": "girona-fc",
"shortName": "Girona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 592761,
"nameCode": "GIR",
"disabled": false,
"national": false,
"type": 0,
"id": 24264,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ff0000",
"text": "#ff0000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062f\u064a \u062c\u064a\u0631\u0648\u0646\u0627",
"ru": "\u0416\u0438\u0440\u043e\u043d\u0430",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e \u090f\u092b\u0938\u0940"
},
"shortNameTranslation": {
"ar": "\u062c\u064a\u0631\u0648\u0646\u0627",
"hi": "\u0917\u093f\u0930\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 3,
"display": 3,
"period1": 1,
"period2": 2,
"normaltime": 3
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 4,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1724618359
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1724621391
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437628,
"startTimestamp": 1724614200,
"slug": "girona-fc-atletico-madrid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "ugbswgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 1,
"homeTeam": {
"name": "Villarreal",
"slug": "villarreal",
"shortName": "Villarreal",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 435132,
"nameCode": "VIL",
"disabled": false,
"national": false,
"type": 0,
"id": 2819,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffff00",
"secondary": "#013765",
"text": "#013765"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"ru": "\u0412\u0438\u043b\u044c\u044f\u0440\u0440\u0435\u0430\u043b",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
},
"shortNameTranslation": {
"ar": "\u0641\u064a\u0627\u0631\u064a\u0627\u0644",
"hi": "\u0935\u093f\u0932\u094d\u0932\u093e\u0930\u093f\u092f\u0932"
}
}
},
"awayTeam": {
"name": "Celta Vigo",
"slug": "celta-vigo",
"shortName": "Celta",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 220159,
"nameCode": "RCC",
"disabled": false,
"national": false,
"type": 0,
"id": 2821,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#6cace4",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u062a \u0641\u064a\u062c\u0648",
"ru": "\u0421\u0435\u043b\u044c\u0442\u0430",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e \u0935\u0940\u0917\u094b"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0644\u062a\u0627",
"hi": "\u0938\u0947\u0932\u094d\u091f\u093e"
}
}
},
"homeScore": {
"current": 4,
"display": 4,
"period1": 1,
"period2": 3,
"normaltime": 4
},
"awayScore": {
"current": 3,
"display": 3,
"period1": 2,
"period2": 1,
"normaltime": 3
},
"time": {
"injuryTime1": 4,
"injuryTime2": 8,
"currentPeriodStartTimestamp": 1724704513
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type",
"homeScore.period2",
"homeScore.normaltime"
],
"changeTimestamp": 1724707876
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437674,
"startTimestamp": 1724700600,
"slug": "celta-vigo-villarreal",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "BgbsIgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Mallorca",
"slug": "mallorca",
"shortName": "Mallorca",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 207290,
"nameCode": "MLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2826,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#cc0000",
"secondary": "#000000",
"text": "#000000"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"ru": "\u041c\u0430\u043b\u044c\u043e\u0440\u043a\u0430",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0643\u0627",
"hi": "\u092e\u0932\u094d\u0932\u094b\u0930\u094d\u0915\u093e"
}
}
},
"awayTeam": {
"name": "Sevilla",
"slug": "sevilla",
"shortName": "Sevilla",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 577167,
"nameCode": "SEV",
"disabled": false,
"national": false,
"type": 0,
"id": 2833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#cc1020",
"text": "#cc1020"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"ru": "C\u0435\u0432\u0438\u043b\u044c\u044f",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
},
"shortNameTranslation": {
"ar": "\u0625\u0634\u0628\u064a\u0644\u064a\u0629",
"hi": "\u0938\u0947\u0935\u093f\u0932\u093e"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 1,
"injuryTime2": 4,
"currentPeriodStartTimestamp": 1724781934
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724784916
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437667,
"awayRedCards": 1,
"startTimestamp": 1724778000,
"slug": "sevilla-mallorca",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "rgbstgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 2,
"homeTeam": {
"name": "Rayo Vallecano",
"slug": "rayo-vallecano",
"shortName": "Rayo Vallecano",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 195949,
"nameCode": "RVM",
"disabled": false,
"national": false,
"type": 0,
"id": 2818,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#ffffff",
"text": "#ffffff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"ru": "\u0420\u0430\u0439\u043e \u0412\u0430\u043b\u044c\u0435\u043a\u0430\u043d\u043e",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0648 \u0641\u0627\u0644\u064a\u0643\u0627\u0646\u0648",
"hi": "\u0930\u0947\u092f\u094b \u0935\u0948\u0932\u0947\u0915\u0948\u0928\u094b"
}
}
},
"awayTeam": {
"name": "Barcelona",
"slug": "barcelona",
"shortName": "Barcelona",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 3474305,
"nameCode": "FCB",
"disabled": false,
"national": false,
"type": 0,
"id": 2817,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#154284",
"secondary": "#9d1009",
"text": "#9d1009"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"ru": "\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
},
"shortNameTranslation": {
"ar": "\u0628\u0631\u0634\u0644\u0648\u0646\u0629",
"hi": "\u092c\u093e\u0930\u094d\u0938\u093f\u0932\u094b\u0928\u093e"
}
}
},
"homeScore": {
"current": 1,
"display": 1,
"period1": 1,
"period2": 0,
"normaltime": 1
},
"awayScore": {
"current": 2,
"display": 2,
"period1": 0,
"period2": 2,
"normaltime": 2
},
"time": {
"injuryTime1": 4,
"injuryTime2": 10,
"currentPeriodStartTimestamp": 1724790976
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724794381
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437672,
"startTimestamp": 1724787000,
"slug": "rayo-vallecano-barcelona",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
},
{
"tournament": {
"name": "LaLiga",
"slug": "laliga",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"uniqueTournament": {
"name": "LaLiga",
"slug": "laliga",
"primaryColorHex": "#2f4a89",
"secondaryColorHex": "#f4a32e",
"category": {
"name": "Spain",
"slug": "spain",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"flag": "spain",
"alpha2": "ES"
},
"userCount": 924118,
"hasPerformanceGraphFeature": true,
"id": 8,
"country": {},
"hasEventPlayerStatistics": true,
"displayInverseHomeAwayTeams": false,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u093f\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"priority": 616,
"isGroup": false,
"isLive": false,
"id": 36,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a",
"hi": "\u0932\u093e \u0932\u0940\u0917\u093e"
},
"shortNameTranslation": {}
}
},
"season": {
"name": "LaLiga 24/25",
"year": "24/25",
"editor": false,
"id": 61643
},
"roundInfo": {
"round": 3
},
"customId": "GgbsVgb",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"winnerCode": 3,
"homeTeam": {
"name": "Real Valladolid",
"slug": "real-valladolid",
"shortName": "Real Valladolid",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 102338,
"nameCode": "VLL",
"disabled": false,
"national": false,
"type": 0,
"id": 2831,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#663399",
"text": "#663399"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0641\u0627\u0644\u0627\u062f\u0648\u0644\u064a\u062f",
"ru": "\u0420\u0435\u0430\u043b \u0412\u0430\u043b\u044c\u044f\u0434\u043e\u043b\u0438\u0434",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
},
"shortNameTranslation": {
"ar": "\u0631\u064a\u0627\u0644 \u0628\u0644\u062f \u0627\u0644\u0648\u0644\u064a\u062f",
"hi": "\u0930\u093f\u092f\u0932 \u0935\u0932\u093e\u0921\u094b\u0932\u093f\u0921"
}
}
},
"awayTeam": {
"name": "Legan\u00e9s",
"slug": "leganes",
"shortName": "Legan\u00e9s",
"gender": "M",
"sport": {
"name": "Football",
"slug": "football",
"id": 1
},
"userCount": 69444,
"nameCode": "LEG",
"disabled": false,
"national": false,
"type": 0,
"id": 2845,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"entityType": "team",
"subTeams": [],
"teamColors": {
"primary": "#ffffff",
"secondary": "#3300ff",
"text": "#3300ff"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"ru": "\u041b\u0435\u0433\u0430\u043d\u0435\u0441",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u063a\u0627\u0646\u064a\u0633",
"hi": "\u0932\u0947\u0917\u093e\u0928\u0947\u0938"
}
}
},
"homeScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"awayScore": {
"current": 0,
"display": 0,
"period1": 0,
"period2": 0,
"normaltime": 0
},
"time": {
"injuryTime1": 2,
"injuryTime2": 5,
"currentPeriodStartTimestamp": 1724868461
},
"changes": {
"changes": [
"status.code",
"status.description",
"status.type"
],
"changeTimestamp": 1724871486
},
"hasGlobalHighlights": true,
"hasXg": true,
"hasEventPlayerStatistics": true,
"hasEventPlayerHeatMap": true,
"detailId": 1,
"crowdsourcingDataDisplayEnabled": false,
"id": 12437679,
"startTimestamp": 1724864400,
"slug": "leganes-real-valladolid",
"finalResultOnly": false,
"feedLocked": true,
"isEditor": false
}
]
Acabamos de scrappear los datos básicos de todos los partidos de la temporada que se encuentran utilizando la API de SofaScore.
El siguiente paso es guardarlos como una nueva collección en una base de datos. Para ello primero tenemos que acceder a nuestra base de datos de MongoDB de manera sÃncrona y crear los nombres de nuestra base y de nuestra primera colección.
cliente = MongoClient() # Cambia la URL si es necesario, yo la dejo asà porque solo tengo una
db = cliente["SofaScore"] # Nombre de la base de datos
partidos_db = db["Partidos"]
Como yo estoy realizando muchas pruebas, no quiero estar constantemente añadiendo datos a mi base de datos, por ello solo utilizaré la siguiente función cuando haga falta. Como estamos hablando de datos que voy a guardar yo de manera provisional en mi base de datos y que además puedo volver a acceder facilmente a estos datos, no tengo problema en borrarlos y volver a añadirlos, en vez de buscar que datos son los mas nuevos, para después añadirlos.
def reescribir_mongo(collection, data, enabled):
if not collection.count_documents({})>0:
# Genero y añado todos los datos en la colección si estuviese vacÃa.
collection.insert_many(data)
elif enabled:
# Borro toda la coleccion
collection.delete_many({})
# Incluyo los nuevos datos
collection.insert_many(data)
reescribir_mongo(partidos_db, partidos_en_temporada, True)
Refinado de la colección de los datos de todos los partidos.¶
Un detalle a tener en cuenta en nuestro analÃsis es cuantos partidos tenemos guardados, para ello se podrÃa hacer de dos maneras:
- Contando cuantos documentos tenemos en nuestra collección.
- Saber cuantas jornadas hay y multiplicar por partidos por jornada.
- Una jornada es una ronda completa de partidos
Empezaremos contando el número de documentos que tenemos en nuestra base de datos
- Una jornada es una ronda completa de partidos
partidos_db.count_documents({})
174
Ahora vamos a contar cuantos partidos tenemos con la segunda forma:
resultado = partidos_db.aggregate([
{
"$group": {
"_id": None,
"ult_jornada": { "$max": "$roundInfo.round" }
}
}
])
resultado = list(resultado)
print(f"La última jornada de nuestra base de datos es: jornada {resultado[0]["ult_jornada"]}")
La última jornada de nuestra base de datos es: jornada 19
Nos da la jornada 19 como última jornada, pero actualmente la última jornada disputada es la 17, ¿Como es esto posible?. En verdad, el resultado que nos da es correcto, puesto que para la jornada 19 se adelantaron 2 partidos, pero son únicamente 2 partidos, con lo que no tiene sentido lo siguiente:
$$numero\_partidos\_jornada * jornada\_19$$
Por ello vamos ha hacer que nuestro aggregate no tenga en cuenta los documentos con jornada: 19.
resultado = partidos_db.aggregate([
{
"$match": { "roundInfo.round": { "$ne": 19 } }
},
{
"$group": {
"_id": None,
"ult_jornada": { "$max": "$roundInfo.round" }
}
}
])
resultado = list(resultado)
print(f"La última jornada de nuestra base de datos es: jornada {resultado[0]["ult_jornada"]}")
La última jornada de nuestra base de datos es: jornada 17
Ahora nos sale algo coherente: $$17_{(jornadas)} * 10_{partidos\_jornada} + 2_{partidos adelantados} = 172$$ Pero existe una cosa, que no he contado, y es que por motivo de la DANA hubo unos cuantos partidos del valencia que no se han jugado aún y que tiene fecha muy proxima, por lo que deberiamos eliminar los documentos de los partidos aun no disputados. En el momento de escritura de este apartado, se tiene bien claro que el partido que se va a quedar aplazado va a ser el Valencia - Real Madrid. ASà que vamos a eliminar de nuestro analÃsis los datos de los partidos que aún no se han disputado.
resultado = partidos_db.find({"status.description": { "$ne": "Ended" }}, {"slug"})
for doc in resultado:
print(doc)
{'_id': ObjectId('6764876883201ea30d32ed85'), 'slug': 'real-madrid-valencia'}
{'_id': ObjectId('6764876883201ea30d32ed8e'), 'slug': 'valencia-espanyol'}
{'_id': ObjectId('6764876883201ea30d32edc0'), 'slug': 'villarreal-rayo-vallecano'}
Como estos partidos no se han jugado, no tiene sentido tenerlos (aún) en la base de datos, por que lo optimo serÃa eliminarlos
partidos_db.delete_many({"status.description": { "$ne": "Ended" }})
DeleteResult({'n': 3, 'ok': 1.0}, acknowledged=True)
Verificamos que se han borrado los documentos de los partidos que aún no se han disputado y volvemos a contar los partidos que tenemos en nuestra base de datos. Finalmente nos deberÃa dar el número correcto de partidos que vayamos a usar
resultado = partidos_db.find({"status.description": { "$ne": "Ended" }}, {"slug"})
for doc in resultado:
print(doc)
partidos_db.count_documents({})
171
Con estos datos sacados de la web podemos ver que hay bastantes elementos innecesarios para nuestra investigación. He decidido que los más relevantes para nuestro analÃsis de datos van a ser los siguientes:
- id: id del partido
- round: int que especifica la jornada
- teams: documento con datos de los equipos
- score: documento con datos del resultado
Por ello vamos a crear una nueva colección con solo estos datos de nuestros documentos. Vamos a hacer unos cambios para que sea más fácil de leer y solo tengan los datos que nos interesen:
La jornada o round no este embebida en un documento.
El apartado de teams será un documento con los siguientes datos:
- home_team: str del nombre del equipo que juega en casa
- away_team: str del nombre del equipo visitante
- match_name: str del nombre del partido dado por SofaScore. Usaremos el campo slug
El resultado o score sera un documento que dentro tenga las siguientes keys:
home_goals: int con goles del equipo que juega en casa.
home_result: str que indique si ha ganado, perdido o empatado
away_goals: int con goles del equipo visitante
away_result: str que indique si ha ganado, perdido o empatado
score_final: str del resultado final
Para los goles entiendo que tanto "$homeScore.normaltime", como "$awayScore.normaltime" son los resultados finales.
Para indicar si el resultado usaremos:
"W": si ha ganado (Win)
"D": si ha empatado (Draw)
"L": si ha perdido (Loose)
Además es importante que esté ordenado por la jornada, y en caso misma jornada, ordenar por el timestamp de inicio del partido, ambos de manera ascendente. Puede parecer más sencillo haber ordenado directamente por el timestamp de inicio, pero como existen los partidos adelantados y aplazados, no quedarÃa bien.
resultado = partidos_db.aggregate([
{
"$sort": {
"roundInfo.round": -1,
"startTimestamp": -1}
},
{
"$project": {
"id": 1,
"round": "$roundInfo.round",
"teams": {
"home_team": "$homeTeam.name",
"away_team": "$awayTeam.name",
"match_name": "$slug"},
"score": {
"home_goals": "$homeScore.normaltime",
"away_goals": "$awayScore.normaltime",
"home_result": {
"$switch": {
"branches": [
{"case": {"$gt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "W"},
{"case": {"$eq": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "D"},
{"case": {"$lt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "L"}
]
}
},
"away_result": {
"$switch": {
"branches": [
{"case": {"$lt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "W"},
{"case": {"$eq": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "D"},
{"case": {"$gt": ["$homeScore.normaltime", "$awayScore.normaltime"]}, "then": "L"}
]
}
},
"score_final": {"$concat":[{"$toString": "$homeScore.normaltime"}, "-", {"$toString": "$awayScore.normaltime"}]}
}
}
}
])
Es importante indicar que al realizar operaciones con los aggregates se genera como outputs unos cursores o punteros, que van recorriendo la lista de los elementos que coinciden con las consultas o especificaciones. Como voy a usar este resultado en el próximo ejercicio he tenido que convertirlo todo en una lista para almacenar los resultados.
resultado = list(resultado)
for doc in resultado:
print(doc)
{'_id': ObjectId('6764876883201ea30d32ed6e'), 'id': 12437801, 'round': 19, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6d'), 'id': 12437816, 'round': 19, 'teams': {'home_team': 'Mallorca', 'away_team': 'Barcelona', 'match_name': 'mallorca-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-5'}}
{'_id': ObjectId('6764876883201ea30d32ed82'), 'id': 12437757, 'round': 17, 'teams': {'home_team': 'Barcelona', 'away_team': 'Leganés', 'match_name': 'leganes-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed80'), 'id': 12437776, 'round': 17, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ed81'), 'id': 12437767, 'round': 17, 'teams': {'home_team': 'Villarreal', 'away_team': 'Real Betis', 'match_name': 'villarreal-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed7f'), 'id': 12437762, 'round': 17, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Athletic Club', 'match_name': 'deportivo-alaves-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed7e'), 'id': 12437755, 'round': 17, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Getafe', 'match_name': 'getafe-atletico-madrid'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed7d'), 'id': 12437759, 'round': 17, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-rayo-vallecano'}, 'score': {'home_goals': 3, 'away_goals': 3, 'home_result': 'D', 'away_result': 'D', 'score_final': '3-3'}}
{'_id': ObjectId('6764876883201ea30d32ed7c'), 'id': 12437769, 'round': 17, 'teams': {'home_team': 'Sevilla', 'away_team': 'Celta Vigo', 'match_name': 'sevilla-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed7b'), 'id': 12437771, 'round': 17, 'teams': {'home_team': 'Mallorca', 'away_team': 'Girona FC', 'match_name': 'girona-fc-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed7a'), 'id': 12437764, 'round': 17, 'teams': {'home_team': 'Espanyol', 'away_team': 'Osasuna', 'match_name': 'osasuna-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ed79'), 'id': 12437773, 'round': 17, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Valencia', 'match_name': 'real-valladolid-valencia'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed78'), 'id': 12437752, 'round': 16, 'teams': {'home_team': 'Getafe', 'away_team': 'Espanyol', 'match_name': 'getafe-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed77'), 'id': 12437733, 'round': 16, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Sevilla', 'match_name': 'atletico-madrid-sevilla'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32ed76'), 'id': 12437750, 'round': 16, 'teams': {'home_team': 'Osasuna', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-osasuna'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed75'), 'id': 12437731, 'round': 16, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Villarreal', 'match_name': 'athletic-club-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed74'), 'id': 12437742, 'round': 16, 'teams': {'home_team': 'Leganés', 'away_team': 'Real Sociedad', 'match_name': 'leganes-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed73'), 'id': 12437738, 'round': 16, 'teams': {'home_team': 'Girona FC', 'away_team': 'Real Madrid', 'match_name': 'girona-fc-real-madrid'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed72'), 'id': 12437747, 'round': 16, 'teams': {'home_team': 'Valencia', 'away_team': 'Rayo Vallecano', 'match_name': 'valencia-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed71'), 'id': 12437745, 'round': 16, 'teams': {'home_team': 'Real Betis', 'away_team': 'Barcelona', 'match_name': 'barcelona-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed70'), 'id': 12437740, 'round': 16, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Valladolid', 'match_name': 'las-palmas-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6f'), 'id': 12437735, 'round': 16, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Mallorca', 'match_name': 'mallorca-celta-vigo'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed6c'), 'id': 12437729, 'round': 15, 'teams': {'home_team': 'Sevilla', 'away_team': 'Osasuna', 'match_name': 'sevilla-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed6b'), 'id': 12437722, 'round': 15, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Real Betis', 'match_name': 'real-sociedad-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed6a'), 'id': 12437717, 'round': 15, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Athletic Club', 'match_name': 'athletic-club-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed69'), 'id': 12437724, 'round': 15, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Getafe', 'match_name': 'getafe-real-madrid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed68'), 'id': 12437727, 'round': 15, 'teams': {'home_team': 'Villarreal', 'away_team': 'Girona FC', 'match_name': 'girona-fc-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed67'), 'id': 12437720, 'round': 15, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-valladolid'}, 'score': {'home_goals': 0, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-5'}}
{'_id': ObjectId('6764876883201ea30d32eda2'), 'id': 12437715, 'round': 15, 'teams': {'home_team': 'Espanyol', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32eda1'), 'id': 12437712, 'round': 15, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Leganés', 'match_name': 'deportivo-alaves-leganes'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eda0'), 'id': 12437708, 'round': 15, 'teams': {'home_team': 'Barcelona', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ed9f'), 'id': 12437710, 'round': 15, 'teams': {'home_team': 'Mallorca', 'away_team': 'Valencia', 'match_name': 'valencia-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed9e'), 'id': 12437685, 'round': 14, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Sociedad', 'match_name': 'athletic-club-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed9d'), 'id': 12437693, 'round': 14, 'teams': {'home_team': 'Leganés', 'away_team': 'Real Madrid', 'match_name': 'leganes-real-madrid'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32ed9c'), 'id': 12437700, 'round': 14, 'teams': {'home_team': 'Sevilla', 'away_team': 'Rayo Vallecano', 'match_name': 'sevilla-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed9b'), 'id': 12437688, 'round': 14, 'teams': {'home_team': 'Osasuna', 'away_team': 'Villarreal', 'match_name': 'osasuna-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed9a'), 'id': 12437696, 'round': 14, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Barcelona', 'match_name': 'celta-vigo-barcelona'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed99'), 'id': 12437705, 'round': 14, 'teams': {'home_team': 'Girona FC', 'away_team': 'Espanyol', 'match_name': 'girona-fc-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32ed98'), 'id': 12437691, 'round': 14, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Mallorca', 'match_name': 'las-palmas-mallorca'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32ed97'), 'id': 12437703, 'round': 14, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-atletico-madrid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ed96'), 'id': 12437698, 'round': 14, 'teams': {'home_team': 'Valencia', 'away_team': 'Real Betis', 'match_name': 'valencia-real-betis'}, 'score': {'home_goals': 4, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-2'}}
{'_id': ObjectId('6764876883201ea30d32ed95'), 'id': 12437686, 'round': 14, 'teams': {'home_team': 'Getafe', 'away_team': 'Real Valladolid', 'match_name': 'getafe-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32ed83'), 'id': 13128822, 'round': 13, 'teams': {'home_team': 'Espanyol', 'away_team': 'Valencia', 'match_name': 'valencia-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed94'), 'id': 12437675, 'round': 13, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Barcelona', 'match_name': 'real-sociedad-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed93'), 'id': 12437662, 'round': 13, 'teams': {'home_team': 'Getafe', 'away_team': 'Girona FC', 'match_name': 'girona-fc-getafe'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed92'), 'id': 12437670, 'round': 13, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Athletic Club', 'match_name': 'real-valladolid-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed91'), 'id': 12437673, 'round': 13, 'teams': {'home_team': 'Mallorca', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ed90'), 'id': 12437660, 'round': 13, 'teams': {'home_team': 'Real Betis', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ed8f'), 'id': 12437666, 'round': 13, 'teams': {'home_team': 'Leganés', 'away_team': 'Sevilla', 'match_name': 'leganes-sevilla'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8d'), 'id': 12437682, 'round': 13, 'teams': {'home_team': 'Villarreal', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-villarreal'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8c'), 'id': 12437678, 'round': 13, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Osasuna', 'match_name': 'real-madrid-osasuna'}, 'score': {'home_goals': 4, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-0'}}
{'_id': ObjectId('6764876883201ea30d32ed8b'), 'id': 12437680, 'round': 13, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-3'}}
{'_id': ObjectId('6764876883201ea30d32ed84'), 'id': 13096804, 'round': 12, 'teams': {'home_team': 'Villarreal', 'away_team': 'Rayo Vallecano', 'match_name': 'villarreal-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed8a'), 'id': 12437639, 'round': 12, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Getafe', 'match_name': 'getafe-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ed89'), 'id': 12437634, 'round': 12, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Real Betis', 'match_name': 'athletic-club-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ed88'), 'id': 12437655, 'round': 12, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Sociedad', 'match_name': 'sevilla-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32ed87'), 'id': 12437658, 'round': 12, 'teams': {'home_team': 'Barcelona', 'away_team': 'Espanyol', 'match_name': 'barcelona-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32ed86'), 'id': 12437637, 'round': 12, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-atletico-madrid'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edbf'), 'id': 12437641, 'round': 12, 'teams': {'home_team': 'Girona FC', 'away_team': 'Leganés', 'match_name': 'girona-fc-leganes'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32edbe'), 'id': 12437644, 'round': 12, 'teams': {'home_team': 'Osasuna', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edbd'), 'id': 12437646, 'round': 12, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Mallorca', 'match_name': 'deportivo-alaves-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edbc'), 'id': 12437611, 'round': 11, 'teams': {'home_team': 'Mallorca', 'away_team': 'Athletic Club', 'match_name': 'mallorca-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edbb'), 'id': 12437625, 'round': 11, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Osasuna', 'match_name': 'real-sociedad-osasuna'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edba'), 'id': 12437613, 'round': 11, 'teams': {'home_team': 'Real Betis', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb9'), 'id': 12437607, 'round': 11, 'teams': {'home_team': 'Getafe', 'away_team': 'Valencia', 'match_name': 'getafe-valencia'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edb8'), 'id': 12437618, 'round': 11, 'teams': {'home_team': 'Leganés', 'away_team': 'Celta Vigo', 'match_name': 'leganes-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edb7'), 'id': 12437616, 'round': 11, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Barcelona', 'match_name': 'real-madrid-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 4, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-4'}}
{'_id': ObjectId('6764876883201ea30d32edb6'), 'id': 12437620, 'round': 11, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Girona FC', 'match_name': 'girona-fc-las-palmas'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb5'), 'id': 12437630, 'round': 11, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edb4'), 'id': 12437627, 'round': 11, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Villarreal', 'match_name': 'real-valladolid-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edb3'), 'id': 12437609, 'round': 11, 'teams': {'home_team': 'Espanyol', 'away_team': 'Sevilla', 'match_name': 'sevilla-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edb2'), 'id': 12437854, 'round': 10, 'teams': {'home_team': 'Valencia', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-valencia'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32edb1'), 'id': 12437839, 'round': 10, 'teams': {'home_team': 'Barcelona', 'away_team': 'Sevilla', 'match_name': 'sevilla-barcelona'}, 'score': {'home_goals': 5, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '5-1'}}
{'_id': ObjectId('6764876883201ea30d32edb0'), 'id': 12437852, 'round': 10, 'teams': {'home_team': 'Villarreal', 'away_team': 'Getafe', 'match_name': 'getafe-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edaf'), 'id': 12437835, 'round': 10, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Leganés', 'match_name': 'leganes-atletico-madrid'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edae'), 'id': 12437847, 'round': 10, 'teams': {'home_team': 'Mallorca', 'away_team': 'Rayo Vallecano', 'match_name': 'mallorca-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edad'), 'id': 12437842, 'round': 10, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edac'), 'id': 12437843, 'round': 10, 'teams': {'home_team': 'Girona FC', 'away_team': 'Real Sociedad', 'match_name': 'girona-fc-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edab'), 'id': 12437851, 'round': 10, 'teams': {'home_team': 'Osasuna', 'away_team': 'Real Betis', 'match_name': 'osasuna-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edaa'), 'id': 12437855, 'round': 10, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Espanyol', 'match_name': 'athletic-club-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32eda9'), 'id': 12437849, 'round': 10, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Real Valladolid', 'match_name': 'deportivo-alaves-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32eda8'), 'id': 12437826, 'round': 9, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eda7'), 'id': 12437828, 'round': 9, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Betis', 'match_name': 'sevilla-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32eda6'), 'id': 12437815, 'round': 9, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Barcelona', 'match_name': 'deportivo-alaves-barcelona'}, 'score': {'home_goals': 0, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-3'}}
{'_id': ObjectId('6764876883201ea30d32eda5'), 'id': 12437824, 'round': 9, 'teams': {'home_team': 'Girona FC', 'away_team': 'Athletic Club', 'match_name': 'girona-fc-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32eda4'), 'id': 12437813, 'round': 9, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Villarreal', 'match_name': 'real-madrid-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32eda3'), 'id': 12437832, 'round': 9, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Celta Vigo', 'match_name': 'las-palmas-celta-vigo'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edde'), 'id': 12437833, 'round': 9, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Rayo Vallecano', 'match_name': 'real-valladolid-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32eddd'), 'id': 12437810, 'round': 9, 'teams': {'home_team': 'Getafe', 'away_team': 'Osasuna', 'match_name': 'getafe-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32eddc'), 'id': 12437820, 'round': 9, 'teams': {'home_team': 'Espanyol', 'away_team': 'Mallorca', 'match_name': 'mallorca-espanyol'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32eddb'), 'id': 12437818, 'round': 9, 'teams': {'home_team': 'Leganés', 'away_team': 'Valencia', 'match_name': 'leganes-valencia'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edda'), 'id': 12437800, 'round': 8, 'teams': {'home_team': 'Villarreal', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-villarreal'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edd9'), 'id': 12437787, 'round': 8, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Real Madrid', 'match_name': 'atletico-madrid-real-madrid'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd8'), 'id': 12437808, 'round': 8, 'teams': {'home_team': 'Real Betis', 'away_team': 'Espanyol', 'match_name': 'real-betis-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edd7'), 'id': 12437784, 'round': 8, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Sevilla', 'match_name': 'sevilla-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd6'), 'id': 12437789, 'round': 8, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Girona FC', 'match_name': 'girona-fc-celta-vigo'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd5'), 'id': 12437795, 'round': 8, 'teams': {'home_team': 'Osasuna', 'away_team': 'Barcelona', 'match_name': 'osasuna-barcelona'}, 'score': {'home_goals': 4, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-2'}}
{'_id': ObjectId('6764876883201ea30d32edd4'), 'id': 12437792, 'round': 8, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Valencia', 'match_name': 'valencia-real-sociedad'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edd3'), 'id': 12437805, 'round': 8, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Leganés', 'match_name': 'leganes-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edd2'), 'id': 12437803, 'round': 8, 'teams': {'home_team': 'Getafe', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-getafe'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edd1'), 'id': 12437798, 'round': 8, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Mallorca', 'match_name': 'real-valladolid-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edd0'), 'id': 12437774, 'round': 7, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-celta-vigo'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32edce'), 'id': 12437777, 'round': 7, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Betis', 'match_name': 'las-palmas-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edcf'), 'id': 12437768, 'round': 7, 'teams': {'home_team': 'Espanyol', 'away_team': 'Villarreal', 'match_name': 'villarreal-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edcd'), 'id': 12437758, 'round': 7, 'teams': {'home_team': 'Barcelona', 'away_team': 'Getafe', 'match_name': 'getafe-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edcc'), 'id': 12437761, 'round': 7, 'teams': {'home_team': 'Girona FC', 'away_team': 'Rayo Vallecano', 'match_name': 'girona-fc-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edcb'), 'id': 12437782, 'round': 7, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-real-madrid'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32edc9'), 'id': 12437779, 'round': 7, 'teams': {'home_team': 'Valencia', 'away_team': 'Osasuna', 'match_name': 'valencia-osasuna'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edca'), 'id': 12437766, 'round': 7, 'teams': {'home_team': 'Sevilla', 'away_team': 'Real Valladolid', 'match_name': 'sevilla-real-valladolid'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfa'), 'id': 12437772, 'round': 7, 'teams': {'home_team': 'Leganés', 'away_team': 'Athletic Club', 'match_name': 'leganes-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edf8'), 'id': 12437763, 'round': 7, 'teams': {'home_team': 'Mallorca', 'away_team': 'Real Sociedad', 'match_name': 'mallorca-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edc8'), 'id': 12437736, 'round': 6, 'teams': {'home_team': 'Real Betis', 'away_team': 'Mallorca', 'match_name': 'mallorca-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edc7'), 'id': 12437744, 'round': 6, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edc6'), 'id': 12437746, 'round': 6, 'teams': {'home_team': 'Villarreal', 'away_team': 'Barcelona', 'match_name': 'villarreal-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 5, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-5'}}
{'_id': ObjectId('6764876883201ea30d32edc5'), 'id': 12437734, 'round': 6, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Celta Vigo', 'match_name': 'athletic-club-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edc4'), 'id': 12437739, 'round': 6, 'teams': {'home_team': 'Getafe', 'away_team': 'Leganés', 'match_name': 'getafe-leganes'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edc3'), 'id': 12437756, 'round': 6, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Espanyol', 'match_name': 'real-madrid-espanyol'}, 'score': {'home_goals': 4, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-1'}}
{'_id': ObjectId('6764876883201ea30d32edc2'), 'id': 12437748, 'round': 6, 'teams': {'home_team': 'Valencia', 'away_team': 'Girona FC', 'match_name': 'girona-fc-valencia'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edc1'), 'id': 12437753, 'round': 6, 'teams': {'home_team': 'Osasuna', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-osasuna'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfc'), 'id': 12437751, 'round': 6, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Real Sociedad', 'match_name': 'real-valladolid-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edfb'), 'id': 12437741, 'round': 6, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Sevilla', 'match_name': 'deportivo-alaves-sevilla'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edf7'), 'id': 12437726, 'round': 5, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Osasuna', 'match_name': 'osasuna-rayo-vallecano'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edf6'), 'id': 12437709, 'round': 5, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Valencia', 'match_name': 'atletico-madrid-valencia'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32edf5'), 'id': 12437718, 'round': 5, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Athletic Club', 'match_name': 'las-palmas-athletic-club'}, 'score': {'home_goals': 2, 'away_goals': 3, 'home_result': 'L', 'away_result': 'W', 'score_final': '2-3'}}
{'_id': ObjectId('6764876883201ea30d32edf4'), 'id': 12437721, 'round': 5, 'teams': {'home_team': 'Girona FC', 'away_team': 'Barcelona', 'match_name': 'girona-fc-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 4, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-4'}}
{'_id': ObjectId('6764876883201ea30d32edf3'), 'id': 12437714, 'round': 5, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32edf2'), 'id': 12437728, 'round': 5, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32edf1'), 'id': 12437723, 'round': 5, 'teams': {'home_team': 'Sevilla', 'away_team': 'Getafe', 'match_name': 'getafe-sevilla'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32edf0'), 'id': 12437730, 'round': 5, 'teams': {'home_team': 'Espanyol', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-espanyol'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32edef'), 'id': 12437716, 'round': 5, 'teams': {'home_team': 'Mallorca', 'away_team': 'Villarreal', 'match_name': 'mallorca-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32edee'), 'id': 12437711, 'round': 5, 'teams': {'home_team': 'Real Betis', 'away_team': 'Leganés', 'match_name': 'leganes-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32eded'), 'id': 12437702, 'round': 4, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Real Betis', 'match_name': 'real-madrid-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edec'), 'id': 12437690, 'round': 4, 'teams': {'home_team': 'Getafe', 'away_team': 'Real Sociedad', 'match_name': 'getafe-real-sociedad'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32edeb'), 'id': 12437706, 'round': 4, 'teams': {'home_team': 'Sevilla', 'away_team': 'Girona FC', 'match_name': 'girona-fc-sevilla'}, 'score': {'home_goals': 0, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-2'}}
{'_id': ObjectId('6764876883201ea30d32ede9'), 'id': 12437694, 'round': 4, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-deportivo-alaves'}, 'score': {'home_goals': 2, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-0'}}
{'_id': ObjectId('6764876883201ea30d32edea'), 'id': 12437704, 'round': 4, 'teams': {'home_team': 'Osasuna', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-osasuna'}, 'score': {'home_goals': 3, 'away_goals': 2, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-2'}}
{'_id': ObjectId('6764876883201ea30d32ede8'), 'id': 12437692, 'round': 4, 'teams': {'home_team': 'Valencia', 'away_team': 'Villarreal', 'match_name': 'valencia-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ede7'), 'id': 12437697, 'round': 4, 'teams': {'home_team': 'Leganés', 'away_team': 'Mallorca', 'match_name': 'leganes-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ede6'), 'id': 12437699, 'round': 4, 'teams': {'home_team': 'Espanyol', 'away_team': 'Rayo Vallecano', 'match_name': 'rayo-vallecano-espanyol'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ede5'), 'id': 12437684, 'round': 4, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-athletic-club'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ede4'), 'id': 12437687, 'round': 4, 'teams': {'home_team': 'Barcelona', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-barcelona'}, 'score': {'home_goals': 7, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '7-0'}}
{'_id': ObjectId('6764876883201ea30d32edf9'), 'id': 12778688, 'round': 3, 'teams': {'home_team': 'Real Betis', 'away_team': 'Getafe', 'match_name': 'getafe-real-betis'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ede3'), 'id': 12437669, 'round': 3, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Real Madrid', 'match_name': 'las-palmas-real-madrid'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ede2'), 'id': 12437664, 'round': 3, 'teams': {'home_team': 'Girona FC', 'away_team': 'Osasuna', 'match_name': 'girona-fc-osasuna'}, 'score': {'home_goals': 4, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-0'}}
{'_id': ObjectId('6764876883201ea30d32ede1'), 'id': 12437681, 'round': 3, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Espanyol', 'match_name': 'atletico-madrid-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ede0'), 'id': 12437676, 'round': 3, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-real-sociedad'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32eddf'), 'id': 12437659, 'round': 3, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Valencia', 'match_name': 'valencia-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee14'), 'id': 12437679, 'round': 3, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Leganés', 'match_name': 'leganes-real-valladolid'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee13'), 'id': 12437672, 'round': 3, 'teams': {'home_team': 'Rayo Vallecano', 'away_team': 'Barcelona', 'match_name': 'rayo-vallecano-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee12'), 'id': 12437667, 'round': 3, 'teams': {'home_team': 'Mallorca', 'away_team': 'Sevilla', 'match_name': 'sevilla-mallorca'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee11'), 'id': 12437674, 'round': 3, 'teams': {'home_team': 'Villarreal', 'away_team': 'Celta Vigo', 'match_name': 'celta-vigo-villarreal'}, 'score': {'home_goals': 4, 'away_goals': 3, 'home_result': 'W', 'away_result': 'L', 'score_final': '4-3'}}
{'_id': ObjectId('6764876883201ea30d32ee10'), 'id': 12437628, 'round': 2, 'teams': {'home_team': 'Atlético Madrid', 'away_team': 'Girona FC', 'match_name': 'girona-fc-atletico-madrid'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0f'), 'id': 12437645, 'round': 2, 'teams': {'home_team': 'Deportivo Alavés', 'away_team': 'Real Betis', 'match_name': 'deportivo-alaves-real-betis'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0e'), 'id': 12437647, 'round': 2, 'teams': {'home_team': 'Leganés', 'away_team': 'Las Palmas', 'match_name': 'las-palmas-leganes'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ee0d'), 'id': 12437638, 'round': 2, 'teams': {'home_team': 'Real Madrid', 'away_team': 'Real Valladolid', 'match_name': 'real-valladolid-real-madrid'}, 'score': {'home_goals': 3, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0b'), 'id': 12437636, 'round': 2, 'teams': {'home_team': 'Getafe', 'away_team': 'Rayo Vallecano', 'match_name': 'getafe-rayo-vallecano'}, 'score': {'home_goals': 0, 'away_goals': 0, 'home_result': 'D', 'away_result': 'D', 'score_final': '0-0'}}
{'_id': ObjectId('6764876883201ea30d32ee0c'), 'id': 12437650, 'round': 2, 'teams': {'home_team': 'Espanyol', 'away_team': 'Real Sociedad', 'match_name': 'real-sociedad-espanyol'}, 'score': {'home_goals': 0, 'away_goals': 1, 'home_result': 'L', 'away_result': 'W', 'score_final': '0-1'}}
{'_id': ObjectId('6764876883201ea30d32ee0a'), 'id': 12437652, 'round': 2, 'teams': {'home_team': 'Barcelona', 'away_team': 'Athletic Club', 'match_name': 'athletic-club-barcelona'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32ee09'), 'id': 12437656, 'round': 2, 'teams': {'home_team': 'Osasuna', 'away_team': 'Mallorca', 'match_name': 'mallorca-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee08'), 'id': 12437642, 'round': 2, 'teams': {'home_team': 'Sevilla', 'away_team': 'Villarreal', 'match_name': 'sevilla-villarreal'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee07'), 'id': 12437631, 'round': 2, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Valencia', 'match_name': 'valencia-celta-vigo'}, 'score': {'home_goals': 3, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '3-1'}}
{'_id': ObjectId('6764876883201ea30d32ee06'), 'id': 12437610, 'round': 1, 'teams': {'home_team': 'Villarreal', 'away_team': 'Atlético Madrid', 'match_name': 'atletico-madrid-villarreal'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32ee05'), 'id': 12437624, 'round': 1, 'teams': {'home_team': 'Real Valladolid', 'away_team': 'Espanyol', 'match_name': 'real-valladolid-espanyol'}, 'score': {'home_goals': 1, 'away_goals': 0, 'home_result': 'W', 'away_result': 'L', 'score_final': '1-0'}}
{'_id': ObjectId('6764876883201ea30d32ee04'), 'id': 12437606, 'round': 1, 'teams': {'home_team': 'Mallorca', 'away_team': 'Real Madrid', 'match_name': 'real-madrid-mallorca'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ee03'), 'id': 12437615, 'round': 1, 'teams': {'home_team': 'Real Sociedad', 'away_team': 'Rayo Vallecano', 'match_name': 'real-sociedad-rayo-vallecano'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee02'), 'id': 12437612, 'round': 1, 'teams': {'home_team': 'Valencia', 'away_team': 'Barcelona', 'match_name': 'valencia-barcelona'}, 'score': {'home_goals': 1, 'away_goals': 2, 'home_result': 'L', 'away_result': 'W', 'score_final': '1-2'}}
{'_id': ObjectId('6764876883201ea30d32ee01'), 'id': 12437619, 'round': 1, 'teams': {'home_team': 'Osasuna', 'away_team': 'Leganés', 'match_name': 'leganes-osasuna'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32ee00'), 'id': 12437608, 'round': 1, 'teams': {'home_team': 'Las Palmas', 'away_team': 'Sevilla', 'match_name': 'las-palmas-sevilla'}, 'score': {'home_goals': 2, 'away_goals': 2, 'home_result': 'D', 'away_result': 'D', 'score_final': '2-2'}}
{'_id': ObjectId('6764876883201ea30d32edff'), 'id': 12437617, 'round': 1, 'teams': {'home_team': 'Celta Vigo', 'away_team': 'Deportivo Alavés', 'match_name': 'deportivo-alaves-celta-vigo'}, 'score': {'home_goals': 2, 'away_goals': 1, 'home_result': 'W', 'away_result': 'L', 'score_final': '2-1'}}
{'_id': ObjectId('6764876883201ea30d32edfe'), 'id': 12437605, 'round': 1, 'teams': {'home_team': 'Real Betis', 'away_team': 'Girona FC', 'match_name': 'girona-fc-real-betis'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
{'_id': ObjectId('6764876883201ea30d32edfd'), 'id': 12437604, 'round': 1, 'teams': {'home_team': 'Athletic Club', 'away_team': 'Getafe', 'match_name': 'getafe-athletic-club'}, 'score': {'home_goals': 1, 'away_goals': 1, 'home_result': 'D', 'away_result': 'D', 'score_final': '1-1'}}
Personalmente me hubiera gustado una forma para hacer referencia a los elementos ya añadidos en nuestro nuevo documento para hacer las condicionales y otros procesos, para asà poder hacer que sea un poquito más rápido (o eso creo yo). Lo que me refiero es que cuando usaba "$homeScore.normaltime" </span> despúes de haber indicado como generar <span style="color:lime">"home_goals"</span>, que hubiese podido llamar a la variable <span style="color:lime">"home_goals"</span> en vez de a la variable <span style="color:lime">"$homeScore.normaltime"
Finalmente guardamos estos datos en una nueva colección ya que tenemos los datos refinados. He incluido una función que usaré yo para poder reescribir los datos cada vez que haga una prueba.
partidos_ref = db["Partidos_refinados"]
reescribir_mongo(partidos_ref, resultado, True)
Scrapear datos de los jugadores por partido.¶
Es el momento de empezar a scrapear los datos de todos los jugadores por partido. Todo lo que hecho anteriormente nos ha servido para:
- Conseguir la ID de cada partido.
- Saber los resultados.
def scrape_player_match_stats(match_id: Union[str, int]):
""" Scrape player stats for a match
Parameters
----------
match : str or int
Sofascore match URL or match ID
Returns
-------
: DataFrame
"""
url = f'{API_PREFIX}/event/{match_id}/lineups'
response = botasaurus_get(url)
if response.status_code == 200:
home_players = response.json()['home']['players']
# print(home_players)
away_players = response.json()['away']['players']
# print(away_players)
return home_players, away_players
else:
print("Ha habido un error al conectar con la página")
Por como está diseñada la API, tenemos que ir accediendo a cada partido uno a uno. Además una caraterÃstica importante es que vamos a hacer que cada jugador "herede" los siguientes datos de la coleccion PARTIDOS_REF:
- Resultado de su equipo en ese partido.
- Nombre de su equipo.
En este apartado realizo actualización
jugadores_db = db["Jugadores"]
reescribir_jugadores_db = True
cursor = partidos_ref.find({})
for doc in cursor:
match_id = doc["id"]
home_result = doc["score"]["home_result"]
away_result = doc["score"]["away_result"]
home_team = doc["teams"]["home_team"]
away_team = doc["teams"]["away_team"]
home_players, away_players = scrape_player_match_stats(match_id)
for p in home_players:
p["result"] = home_result
p["team"] = home_team
for p in away_players:
p["result"] = away_result
p["team"] = away_team
all_match_players = home_players + away_players
print(json.dumps(all_match_players, indent=4))
if reescribir_jugadores_db:
reescribir_mongo(jugadores_db, all_match_players, reescribir_jugadores_db)
reescribir_jugadores_db = False
else:
jugadores_db.insert_many(all_match_players)
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 19,
"totalLongBalls": 17,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 1,
"penaltyConceded": 1,
"fouls": 1,
"savedShotsFromInsideTheBox": 3,
"penaltySave": 1,
"saves": 4,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.4753
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 79,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00659078
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.2,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0138525
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 35,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 3,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.0086,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0539614
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 8,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 63,
"touches": 43,
"rating": 6.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0218,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.018323
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 25,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 22,
"expectedGoals": 0.0214,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.125076
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 79,
"touches": 35,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0971,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0172154
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.1228,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0781492
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"minutesPlayed": 63,
"touches": 28,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 1.1412,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0167775
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"fouls": 3,
"minutesPlayed": 27,
"touches": 11,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 6,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 11,
"rating": 7.1,
"possessionLostCtrl": 4,
"expectedGoals": 0.3996,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai Sim\u00f3n",
"slug": "unai-simon",
"shortName": "U. Sim\u00f3n",
"position": "G",
"jerseyNumber": "1",
"height": 189,
"userCount": 4310,
"id": 797291,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 865987200,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 43,
"totalLongBalls": 16,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.3,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -0.3862
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 88,
"touches": 63,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00933505
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 71,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 89,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0100529
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 82,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 9,
"totalTackle": 1,
"wasFouled": 1,
"penaltyWon": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 107,
"rating": 7.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.1266,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00702789
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 30,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 71,
"touches": 71,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0225,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00786921
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 40,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.5,
"possessionLostCtrl": 15,
"expectedGoals": 0.007,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0251662
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 38,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 71,
"touches": 47,
"rating": 6.9,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00642213
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 54,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 58,
"touches": 64,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0114378
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 12,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 6,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.5717,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0100472
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"minutesPlayed": 88,
"touches": 57,
"rating": 7.5,
"possessionLostCtrl": 12,
"expectedGoals": 0.1467,
"keyPass": 4,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.280208
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 4,
"totalContest": 5,
"wonContest": 2,
"bigChanceMissed": 2,
"onTargetScoringAttempt": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.9606,
"keyPass": 1,
"penaltyMiss": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0281
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 32,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0812305
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 19,
"touches": 25,
"rating": 6.8,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0665523
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 19,
"touches": 12,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 13,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0100435
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 3,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Lorenzo Aguado",
"slug": "lorenzo-aguado-herrera",
"shortName": "L. Aguado",
"position": "D",
"jerseyNumber": "39",
"height": 177,
"userCount": 673,
"id": 1526535,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1032393600,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Gonzalo Garc\u00eda",
"firstName": "Gonzalo Garc\u00eda",
"slug": "gonzalo-garcia",
"shortName": "G. Garc\u00eda",
"position": "F",
"jerseyNumber": "7",
"height": 182,
"userCount": 2088,
"id": 1402716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1080086400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 16,
"totalLongBalls": 25,
"accurateLongBalls": 12,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.2288
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"bigChanceCreated": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 78,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.462918
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 5.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 5.9,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 5.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 5.8,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"totalClearance": 4,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 5.1,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 5.1,
"alternative": null
},
"expectedAssists": 0.117861
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 22,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00617931
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0111735
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 10,
"duelWon": 2,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 2,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 5.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.1417,
"keyPass": 1,
"ratingVersions": {
"original": 5.8,
"alternative": null
},
"expectedAssists": 0.0168337
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 67,
"touches": 43,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0208,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.148694
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 4,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 5,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 3,
"totalOffside": 5,
"minutesPlayed": 79,
"touches": 20,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.7085,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00760022
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 3,
"minutesPlayed": 78,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0344,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0116013
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.0161,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0194668
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"totalTackle": 2,
"minutesPlayed": 23,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"totalClearance": 1,
"interceptionWon": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 12,
"touches": 11,
"rating": 4.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 4.3,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0134233
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Takuma Asano",
"firstName": "",
"lastName": "",
"slug": "takuma-asano",
"shortName": "T. Asano",
"position": "F",
"jerseyNumber": "11",
"height": 171,
"userCount": 2234,
"id": 309546,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 784425600,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.0066000000000001
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00745541
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 85,
"accuratePass": 72,
"totalLongBalls": 13,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 92,
"rating": 6.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00603354
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 69,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 8,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 98,
"rating": 7.1,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00700343
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.109712
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 82,
"touches": 63,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.12586
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 43,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 4,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 82,
"touches": 67,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0165041
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 5,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.6,
"possessionLostCtrl": 20,
"expectedGoals": 1.0148,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.284207
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 72,
"touches": 33,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.0843,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.134801
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 4,
"goals": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 87,
"touches": 40,
"rating": 8.9,
"possessionLostCtrl": 9,
"expectedGoals": 2.1516,
"keyPass": 4,
"ratingVersions": {
"original": 8.9,
"alternative": null
},
"expectedAssists": 0.535739
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 72,
"touches": 26,
"rating": 7.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.6389,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0355477
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 18,
"touches": 8,
"rating": 8.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.2237,
"keyPass": 1,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.442451
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 8,
"rating": 7.6,
"possessionLostCtrl": 2,
"expectedGoals": 0.9728,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"bigChanceCreated": 1,
"minutesPlayed": 8,
"touches": 9,
"rating": 7,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0102934
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 3,
"touches": 4
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 23,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": -0.533
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 73,
"accuratePass": 63,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 106,
"rating": 7.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.2632,
"keyPass": 5,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.450788
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 78,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 2,
"totalTackle": 2,
"minutesPlayed": 74,
"touches": 89,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0364947
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 90,
"accuratePass": 87,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 101,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0431541
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 61,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 88,
"rating": 7.2,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0864537
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 127,
"accuratePass": 113,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 80,
"touches": 138,
"rating": 7.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.120864
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 125,
"accuratePass": 116,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 142,
"rating": 8.5,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.638005
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 5,
"shotOffTarget": 3,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 62,
"rating": 7.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.1173,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.131567
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 26,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 2,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 66,
"touches": 55,
"rating": 7,
"possessionLostCtrl": 22,
"expectedGoals": 0.1162,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.392044
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 56,
"accuratePass": 43,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 4,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 93,
"rating": 8.7,
"possessionLostCtrl": 29,
"expectedGoals": 0.3414,
"keyPass": 5,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.931037
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 20,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 1.6061,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0127086
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 24,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0826,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0294873
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"bigChanceCreated": 1,
"minutesPlayed": 24,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0376434
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 16,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.02438
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 15,
"touches": 12,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.12336
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"shotOffTarget": 1,
"minutesPlayed": 10,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.1048,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0245945
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ronald Ara\u00fajo",
"slug": "ronald-araujo",
"shortName": "R. Ara\u00fajo",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 79473,
"id": 925097,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920764800,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0631\u0648\u062c\u0648, \u0631\u0648\u0646\u0627\u0644\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0631\u0648\u062c\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 14,
"totalLongBalls": 38,
"accurateLongBalls": 14,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"punches": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.9,
"possessionLostCtrl": 24,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"goalsPrevented": 2.2481
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 6,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0082,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0154958
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 6,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 21,
"rating": 8.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.075,
"ratingVersions": {
"original": 8.2,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 14,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 7.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 12,
"duelWon": 1,
"challengeLost": 5,
"totalContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.5,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00812511
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 58,
"touches": 20,
"rating": 6.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.1819,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0359,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 82,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 7,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 2,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.4,
"possessionLostCtrl": 18,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.1061
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 1,
"totalContest": 3,
"totalClearance": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 58,
"touches": 18,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 4,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 3,
"interceptionWon": 1,
"minutesPlayed": 45,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 32,
"touches": 14,
"rating": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.028704
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0374,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 8,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0591,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Iker Bachiller",
"firstName": "",
"lastName": "",
"slug": "bachiller-iker",
"shortName": "I. Bachiller",
"position": "D",
"jerseyNumber": "28",
"height": 169,
"userCount": 3,
"id": 978652,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031961600,
"proposedMarketValueRaw": {
"value": 24000,
"currency": "EUR"
}
},
"teamId": 262427,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Naim Garc\u00eda",
"firstName": "Naim Garc\u00eda",
"lastName": "",
"slug": "naim-garcia",
"shortName": "N. Garc\u00eda",
"position": "M",
"jerseyNumber": "27",
"height": 179,
"userCount": 227,
"id": 1134395,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023753600,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.8865
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 13,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"totalClearance": 2,
"interceptionWon": 4,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 95,
"rating": 6.7,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0205065
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 47,
"totalLongBalls": 16,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0240331
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 8,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.2,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0055303
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 85,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00698202
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 6,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.1,
"possessionLostCtrl": 20,
"expectedGoals": 0.0305,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.072161
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 34,
"rating": 6.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0142694
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 11,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 67,
"touches": 55,
"rating": 6.5,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0450211
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 41,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 6,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0941,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0365568
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.3116,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.342535
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"duelLost": 8,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 24,
"rating": 6.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.3736,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 23,
"touches": 25,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0832,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0709826
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 23,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.2087,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0191713
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"totalLongBalls": 2,
"goalAssist": 0,
"shotOffTarget": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.0263,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0213,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0162173
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 20,
"totalLongBalls": 26,
"accurateLongBalls": 9,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.6412
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 3,
"minutesPlayed": 85,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0125721
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 7,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 7,
"duelWon": 8,
"totalClearance": 9,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 22,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 8,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 6,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.4,
"possessionLostCtrl": 24,
"expectedGoals": 0.0104,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0186385
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 18,
"challengeLost": 3,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 9,
"wasFouled": 7,
"fouls": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0253,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0093347
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 12,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"interceptionWon": 2,
"wasFouled": 2,
"minutesPlayed": 85,
"touches": 48,
"rating": 7.2,
"possessionLostCtrl": 22,
"expectedGoals": 0.2139,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00800042
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 73,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 60,
"touches": 28,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.3517,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0875625
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"totalOffside": 3,
"minutesPlayed": 72,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.3659,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00932608
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Marvin Park",
"firstName": "",
"lastName": "",
"slug": "park-marvin",
"shortName": "M. Park",
"position": "D",
"jerseyNumber": "2",
"height": 177,
"userCount": 806,
"id": 960401,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 952387200,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 14,
"rating": 7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 11,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 3,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.146
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 58,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.3,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.414457
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 81,
"accuratePass": 76,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0172,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0214262
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.043,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00659309
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 49,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.139176
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 70,
"touches": 56,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.4035,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0829463
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 6,
"totalContest": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 57,
"touches": 46,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0240333
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 77,
"totalLongBalls": 10,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 7,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 92,
"rating": 7.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0186,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.137321
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 43,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 93,
"rating": 8.3,
"possessionLostCtrl": 30,
"expectedGoals": 0.3854,
"keyPass": 4,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.296549
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Gerard Moreno",
"firstName": "",
"lastName": "",
"slug": "gerard-moreno",
"shortName": "G. Moreno",
"position": "F",
"jerseyNumber": "7",
"height": 180,
"userCount": 4216,
"id": 146866,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0946,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.036989
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0393,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.15189
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.22585
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialWon": 6,
"duelLost": 1,
"duelWon": 6,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 33,
"touches": 8,
"rating": 7.3,
"possessionLostCtrl": 1,
"expectedGoals": 1.0456,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"totalTackle": 1,
"minutesPlayed": 20,
"touches": 30,
"rating": 7,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00926953
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Rub\u00e9n G\u00f3mez",
"firstName": "Rub\u00e9n G\u00f3mez Peris",
"lastName": "",
"slug": "ruben-gomez",
"shortName": "R. G\u00f3mez",
"position": "G",
"jerseyNumber": "55",
"height": 185,
"userCount": 23,
"id": 1407702,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1011830400,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 55,
"jerseyNumber": "55",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Thiago Ojeda",
"firstName": "Thiago Ojeda",
"lastName": "",
"slug": "thiago-ojeda",
"shortName": "T. Ojeda",
"position": "M",
"jerseyNumber": "38",
"height": 188,
"userCount": 94,
"id": 1116580,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042329600,
"proposedMarketValueRaw": {
"value": 245000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 14,
"totalLongBalls": 27,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"goodHighClaim": 4,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.5919
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 3,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 3,
"totalClearance": 10,
"outfielderBlock": 2,
"interceptionWon": 6,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00780934
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 7,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0107184
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 6,
"totalTackle": 2,
"wasFouled": 6,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.8,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0117953
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 3,
"totalClearance": 6,
"interceptionWon": 5,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0170609
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 58,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0184,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0299144
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 34,
"touches": 16,
"rating": 5.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0108,
"keyPass": 1,
"ratingVersions": {
"original": 5.6,
"alternative": null
},
"expectedAssists": 0.120301
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 4,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 74,
"touches": 63,
"rating": 7.5,
"possessionLostCtrl": 21,
"expectedGoals": 0.1111,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0474343
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 74,
"touches": 43,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.128,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.358192
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 68,
"touches": 19,
"rating": 7.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.4338,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0335671
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 22,
"touches": 9,
"rating": 6.1,
"possessionLostCtrl": 5,
"expectedGoals": 0.0925,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 16,
"touches": 7,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Isco",
"slug": "isco",
"shortName": "Isco",
"position": "M",
"jerseyNumber": "22",
"height": 176,
"userCount": 24415,
"id": 103417,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703814400,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0625\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 12,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 10,
"touches": 2,
"rating": 6.9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Manu Gonz\u00e1lez",
"firstName": "Manu Gonz\u00e1lez",
"slug": "manu-gonzalez",
"shortName": "M. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "41",
"userCount": 59,
"id": 1823954,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1176854400
},
"teamId": 275789,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Jes\u00fas Rodriguez",
"slug": "jesus-rodriguez",
"shortName": "J. Rodriguez",
"position": "F",
"jerseyNumber": "36",
"height": 185,
"userCount": 180,
"id": 1800245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1132531200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 45,
"accuratePass": 33,
"totalLongBalls": 29,
"accurateLongBalls": 17,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00631755,
"goalsPrevented": -0.0616
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 12,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 8,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0176,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 45,
"totalLongBalls": 12,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00887065
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 36,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 3,
"interceptionWon": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 4,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.0321,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 3,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"fouls": 3,
"minutesPlayed": 72,
"touches": 47,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 33,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.4,
"possessionLostCtrl": 21,
"expectedGoals": 0.7346,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.151032
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 5,
"duelLost": 13,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.2,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0190488
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0153,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.102787
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 23,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 61,
"touches": 49,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0523,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00783545
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 4,
"duelWon": 14,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 5,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.4,
"possessionLostCtrl": 15,
"expectedGoals": 0.0934,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0398785
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0102401
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Hugo Novoa Ramos",
"firstName": "",
"lastName": "",
"slug": "hugo-novoa-ramos",
"shortName": "H. N. Ramos",
"position": "M",
"jerseyNumber": "16",
"height": 182,
"userCount": 346,
"id": 1001967,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1043366400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Unai Sim\u00f3n",
"slug": "unai-simon",
"shortName": "U. Sim\u00f3n",
"position": "G",
"jerseyNumber": "1",
"height": 189,
"userCount": 4310,
"id": 797291,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 865987200,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 15,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"errorLeadToAGoal": 1,
"goodHighClaim": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.1764
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 70,
"rating": 7,
"possessionLostCtrl": 16,
"expectedGoals": 0.044,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.179081
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 45,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00747075
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 41,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 3,
"totalClearance": 6,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.5,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0847,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 78,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0379,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0331608
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 14,
"duelWon": 13,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"totalTackle": 7,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.0579,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0124605
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 7.2,
"possessionLostCtrl": 17,
"expectedGoals": 0.0308,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0298933
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"minutesPlayed": 60,
"touches": 15,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.2866,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 10,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 8,
"wonContest": 2,
"shotOffTarget": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 78,
"touches": 38,
"rating": 6.1,
"possessionLostCtrl": 18,
"expectedGoals": 0.0912,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0437039
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 60,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.169939
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"minutesPlayed": 30,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0306,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"minutesPlayed": 30,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.058,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 14,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.0177
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 56,
"touches": 45,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.0222,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0104427
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 51,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 6,
"duelLost": 7,
"duelWon": 10,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00575066
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 57,
"totalLongBalls": 13,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 8,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 7.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.0408,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0146709
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 17,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 8,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 83,
"rating": 8,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.441044
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 55,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.5013,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.362139
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 53,
"totalLongBalls": 14,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.6,
"possessionLostCtrl": 21,
"expectedGoals": 0.2196,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.31487
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 50,
"totalLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"totalContest": 2,
"shotOffTarget": 2,
"totalClearance": 3,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 86,
"touches": 68,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0736,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0174579
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 3,
"totalContest": 4,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 45,
"touches": 38,
"rating": 6,
"possessionLostCtrl": 8,
"expectedGoals": 0.6193,
"keyPass": 2,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0299049
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"duelLost": 1,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0738195
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 28,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0943,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.209489
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 26,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.039,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00980435
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 35,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0628,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 34,
"touches": 19,
"rating": 7.2,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0325217
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 8,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thomas Lemar",
"firstName": "",
"lastName": "",
"slug": "thomas-lemar",
"shortName": "T. Lemar",
"position": "M",
"jerseyNumber": "11",
"height": 170,
"userCount": 3268,
"id": 191182,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 816134400,
"proposedMarketValueRaw": {
"value": 7700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 16,
"totalLongBalls": 29,
"accurateLongBalls": 14,
"goalAssist": 0,
"duelWon": 1,
"lastManTackle": 1,
"totalTackle": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.1506
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.0321,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0120035
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0136089
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 77,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.029292
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 18,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.9,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0127941
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Abdoulaye Keita",
"firstName": "Abdoulaye Keita",
"lastName": "",
"slug": "abdoulaye-keita",
"shortName": "A. Keita",
"position": "F",
"jerseyNumber": "36",
"height": 186,
"userCount": 29,
"id": 1168094,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030838400,
"proposedMarketValueRaw": {
"value": 155000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 55,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0499,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00503578
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"interceptionWon": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0177241
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 56,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 47,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 4,
"totalTackle": 1,
"wasFouled": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0495,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0987877
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 77,
"touches": 28,
"rating": 5.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00519824
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 6,
"duelLost": 11,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 77,
"touches": 46,
"rating": 6.5,
"possessionLostCtrl": 20,
"expectedGoals": 0.0169,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0102466
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 35,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0446,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00593636
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 34,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00876395
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.0193,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"interceptionWon": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 16,
"totalLongBalls": 18,
"accurateLongBalls": 7,
"goalAssist": 0,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -1.5401
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 6,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00697011
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.2055,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0453346
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 21,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.1063,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0994178
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 66,
"touches": 22,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.2297,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.138539
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 5,
"minutesPlayed": 60,
"touches": 18,
"rating": 6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0456,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 32,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.333,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0376762
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 54,
"touches": 25,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0612,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0376718
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 60,
"touches": 26,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0319693
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 4,
"fouls": 3,
"minutesPlayed": 90,
"touches": 59,
"rating": 8.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.5556,
"keyPass": 1,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.0810591
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"challengeLost": 1,
"fouls": 1,
"minutesPlayed": 36,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0199096
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 24,
"touches": 16,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.0881,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 2,
"totalClearance": 1,
"minutesPlayed": 24,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Alfonso Espino",
"slug": "alfonso-espino",
"shortName": "A. Espino",
"position": "D",
"jerseyNumber": "22",
"height": 172,
"userCount": 573,
"id": 542634,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694569600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Joni Montiel",
"slug": "joni-montiel",
"shortName": "J. Montiel",
"position": "M",
"jerseyNumber": "25",
"height": 173,
"userCount": 55,
"id": 827491,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 904780800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2818,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.7992
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 58,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 79,
"touches": 91,
"rating": 6.9,
"possessionLostCtrl": 15,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.362898
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 83,
"accuratePass": 77,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 96,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00846363
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 60,
"totalLongBalls": 11,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.054,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0093569
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 51,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 92,
"rating": 6.8,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.129339
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 62,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 3,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.2,
"possessionLostCtrl": 16,
"expectedGoals": 0.0255,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0596351
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 71,
"accuratePass": 62,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 4,
"totalContest": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 72,
"touches": 81,
"rating": 6.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0318,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.234507
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 2,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 79,
"touches": 55,
"rating": 7.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.332,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0404272
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0909,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0288741
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 16,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 26,
"rating": 6.5,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00610551
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"totalLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 4,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 8.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.1039,
"keyPass": 3,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.211113
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 27,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0402,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0250445
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"totalContest": 3,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 4,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0145,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Lorenzo Aguado",
"slug": "lorenzo-aguado-herrera",
"shortName": "L. Aguado",
"position": "D",
"jerseyNumber": "39",
"height": 177,
"userCount": 673,
"id": 1526535,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1032393600,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Youssef Lekhedim",
"firstName": "",
"lastName": "",
"slug": "youssef-lekhedim",
"shortName": "Y. Lekhedim",
"position": "M",
"jerseyNumber": "29",
"height": 170,
"userCount": 3168,
"id": 1403364,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1128643200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "V\u00edctor Mu\u00f1oz",
"slug": "victor-munoz",
"shortName": "V. Mu\u00f1oz",
"position": "F",
"jerseyNumber": "9",
"height": 173,
"userCount": 556,
"id": 1145642,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1058054400,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 44,
"jerseyNumber": "44",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 27,
"totalLongBalls": 27,
"accurateLongBalls": 10,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"wasFouled": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.4,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 1.0884
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 3,
"minutesPlayed": 86,
"touches": 67,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00922699
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 48,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 50,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"totalClearance": 2,
"interceptionWon": 2,
"minutesPlayed": 89,
"touches": 63,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0688486
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 39,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.5,
"possessionLostCtrl": 24,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0797141
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Manu Bueno",
"slug": "bueno-manu",
"shortName": "M. Bueno",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 140,
"id": 1142094,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090886400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Bueno Sebastian, Manuel"
},
"shortNameTranslation": {
"ar": "M. B. Sebastian"
}
}
},
"teamId": 7762,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 70,
"touches": 32,
"rating": 7.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.1398,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 4,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00692442
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 5,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.1567,
"keyPass": 3,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0470785
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 71,
"touches": 42,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00783557
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 9,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.5,
"possessionLostCtrl": 21,
"expectedGoals": 0.2643,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0343184
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alvaro Garcia-Pascual",
"firstName": "Alvaro Garcia-Pascual",
"slug": "alvaro-garcia-pascual",
"shortName": "A. Garcia-Pascual",
"position": "F",
"jerseyNumber": "42",
"height": 190,
"userCount": 27,
"id": 1929542,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00643103
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 2,
"minutesPlayed": 20,
"touches": 6,
"rating": 6.8,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 19,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.0208,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dar\u00edo Benavides",
"slug": "dario-benavides",
"shortName": "D. Benavides",
"position": "D",
"jerseyNumber": "29",
"height": 178,
"userCount": 41,
"id": 1142092,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042329600,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 13,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 4,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Rafael Romero",
"firstName": "Rafael Romero",
"slug": "rafael-romero",
"shortName": "R. R. Jim\u00e9nez",
"position": "G",
"jerseyNumber": "43",
"height": 190,
"userCount": 11,
"id": 1089222,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 263931,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"saves": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.1837
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 38,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 1,
"totalClearance": 5,
"interceptionWon": 4,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0208349
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 51,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 7,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00518517
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 72,
"totalLongBalls": 10,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 99,
"rating": 7.2,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0687008
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.9,
"possessionLostCtrl": 23,
"expectedGoals": 0.0148,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.112483
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 55,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 73,
"touches": 66,
"rating": 7.1,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0647241
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.1,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0196435
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 1,
"totalTackle": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 62,
"rating": 6.9,
"possessionLostCtrl": 21,
"expectedGoals": 0.0183,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0108893
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 43,
"accuratePass": 33,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 14,
"expectedGoals": 0.3142,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.181515
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 3,
"hitWoodwork": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 73,
"touches": 35,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.1806,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.112084
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 26,
"rating": 6.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.3142,
"keyPass": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0904422
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 24,
"touches": 12,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00678132
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 1,
"minutesPlayed": 17,
"touches": 28,
"rating": 7,
"possessionLostCtrl": 5,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00832162
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelLost": 2,
"fouls": 2,
"minutesPlayed": 17,
"touches": 1,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 2,
"expectedGoals": 0.4018,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Yoel Lago",
"firstName": "Yoel",
"lastName": "Lago",
"slug": "yoel-lago",
"shortName": "Y. Lago",
"position": "D",
"jerseyNumber": "29",
"height": 185,
"userCount": 15,
"id": 1145100,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1080172800,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24336,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Luca De La Torre",
"firstName": "",
"lastName": "",
"slug": "luca-de-la-torre",
"shortName": "L. D. L. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 652,
"id": 846492,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895881600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u062f\u064a \u0644\u0627 \u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0644. \u062f. \u0644. \u062a\u0648\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 12,
"totalLongBalls": 22,
"accurateLongBalls": 7,
"goalAssist": 0,
"goodHighClaim": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.2,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.1319
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 4,
"bigChanceCreated": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.1,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0599265
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 35,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 11,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00533192
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 2,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.117592
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 34,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.1223,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00879585
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 73,
"touches": 41,
"rating": 7.1,
"possessionLostCtrl": 3,
"expectedGoals": 0.1051,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0117541
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 3,
"totalClearance": 7,
"outfielderBlock": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00919275
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 73,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0151,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.204331
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 8,
"duelLost": 10,
"duelWon": 11,
"dispossessed": 4,
"totalContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 83,
"touches": 43,
"rating": 8,
"possessionLostCtrl": 21,
"expectedGoals": 0.8444,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.0115405
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 7,
"rating": 6,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.173618
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 8,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 17,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 12,
"touches": 4,
"rating": 6.3,
"expectedGoals": 0.0548,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Takuma Asano",
"firstName": "",
"lastName": "",
"slug": "takuma-asano",
"shortName": "T. Asano",
"position": "F",
"jerseyNumber": "11",
"height": 171,
"userCount": 2234,
"id": 309546,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 784425600,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 90,
"touches": 23,
"rating": 5.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 5.7,
"alternative": null
},
"goalsPrevented": -0.4768
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 55,
"accuratePass": 53,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 3,
"minutesPlayed": 57,
"touches": 63,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0184128
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 94,
"accuratePass": 91,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 102,
"rating": 7,
"possessionLostCtrl": 3,
"expectedGoals": 0.019,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0347884
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 119,
"accuratePass": 110,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 9,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 137,
"rating": 7.5,
"possessionLostCtrl": 19,
"expectedGoals": 0.0176,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.10872
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 57,
"touches": 42,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.1186,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0354272
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 66,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 92,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.1871,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0517928
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 51,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 73,
"touches": 64,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0439,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0830841
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 63,
"touches": 29,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0727,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00796125
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 60,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 12,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 87,
"rating": 7.2,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0545865
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 33,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"duelWon": 2,
"blockedScoringAttempt": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0749,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0867459
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.387979
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0248,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0116443
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"minutesPlayed": 33,
"touches": 3,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0288,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0505352
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 27,
"touches": 9,
"rating": 6.7,
"expectedGoals": 0.2333,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00972209
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"minutesPlayed": 17,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0119031
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ricard Artero",
"firstName": "Ricard Artero",
"lastName": "",
"slug": "ricard-artero",
"shortName": "R. Artero",
"position": "M",
"jerseyNumber": "36",
"height": 181,
"userCount": 52,
"id": 1134432,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044403200,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 368693,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Jastin Garc\u00eda",
"slug": "jastin-garcia",
"shortName": "J. Garc\u00eda",
"position": "F",
"jerseyNumber": "31",
"height": 180,
"userCount": 140,
"id": 1518119,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1074211200
},
"teamId": 368693,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"goodHighClaim": 3,
"punches": 2,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.1,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0654235
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 38,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 43,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0955059
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0173,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0298991
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 60,
"touches": 24,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0472304
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 38,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0155,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0336377
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 86,
"touches": 43,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0178,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0164137
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"totalTackle": 1,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 26,
"rating": 6.5,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0168131
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 19,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1633,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.014874
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 30,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.0402,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.151587
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0695,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 32,
"totalLongBalls": 14,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"goalsPrevented": 0.5387
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 6,
"duelWon": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 83,
"touches": 51,
"rating": 7,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0134458
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 74,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 94,
"rating": 7.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00573483
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 72,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0115997
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 87,
"touches": 59,
"rating": 6.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 33,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0907829
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 2,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 67,
"touches": 55,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0188,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00941546
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 53,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0462,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00672269
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 42,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 9,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 4,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 86,
"touches": 65,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.057,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.07809
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.136406
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 26,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1257,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00553159
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 23,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0316,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 4,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 23,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0062,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 3,
"minutesPlayed": 15,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Kike Barja",
"slug": "kike-barja",
"shortName": "K. Barja",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 121,
"id": 591132,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860112000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0631\u062c\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 18,
"totalLongBalls": 19,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 4,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.0333
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00533416
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 23,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 4,
"duelWon": 8,
"totalContest": 1,
"totalClearance": 13,
"clearanceOffLine": 1,
"outfielderBlock": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 8.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 8.2,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"totalClearance": 11,
"outfielderBlock": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 7.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 24,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 10,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 77,
"touches": 56,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0259535
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 6,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 38,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.3018,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0059653
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 58,
"touches": 30,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0107278
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 71,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 1,
"aerialLost": 4,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 71,
"touches": 17,
"rating": 7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"minutesPlayed": 32,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 19,
"touches": 12,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 7,
"touches": 3,
"rating": 5.1,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 5.1,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.1,
"possessionLostCtrl": 2,
"expectedGoals": 0.2458,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "C\u00e9sar de la Hoz",
"firstName": "",
"lastName": "",
"slug": "cesar-de-la-hoz",
"shortName": "C. de la Hoz",
"position": "M",
"jerseyNumber": "16",
"height": 179,
"userCount": 49,
"id": 233328,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701913600,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Adri\u00e1n Arnu",
"slug": "adrian-arnu",
"shortName": "A. Arnu",
"position": "F",
"jerseyNumber": "29",
"height": 185,
"userCount": 129,
"id": 1542697,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1172966400,
"proposedMarketValueRaw": {
"value": 475000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 15,
"totalLongBalls": 12,
"accurateLongBalls": 4,
"goalAssist": 0,
"errorLeadToAShot": 1,
"goodHighClaim": 1,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.5946
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 3,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 67,
"touches": 58,
"rating": 6.2,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0097649
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 57,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 4,
"duelLost": 9,
"duelWon": 9,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.1855,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0122172
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 53,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 69,
"rating": 6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00624706
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 40,
"rating": 6.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00919186
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0139557
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 84,
"accuratePass": 77,
"totalLongBalls": 11,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalCross": 12,
"accurateCross": 2,
"aerialWon": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 104,
"rating": 7.6,
"possessionLostCtrl": 17,
"expectedGoals": 0.0867,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.275918
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 41,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 4,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 61,
"touches": 56,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0554,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0181338
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 17,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.1,
"possessionLostCtrl": 23,
"expectedGoals": 0.0297,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.314014
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 4,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.7,
"possessionLostCtrl": 23,
"expectedGoals": 0.0382,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0457952
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.2288,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.116058
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 45,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0437932
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 36,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.014,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0442706
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Rafa Mir",
"slug": "rafa-mir",
"shortName": "R. Mir",
"position": "F",
"jerseyNumber": "11",
"height": 189,
"userCount": 1282,
"id": 825754,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 866592000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u064a\u0631"
}
}
},
"teamId": 2828,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 29,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.2118,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 22,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00837871
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 10,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0123328
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Rub\u00e9n Iranzo",
"slug": "ruben-iranzo",
"shortName": "R. Iranzo",
"position": "D",
"jerseyNumber": "31",
"height": 182,
"userCount": 48,
"id": 1167704,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047600000,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Iker Cordoba",
"slug": "iker-cordoba",
"shortName": "I. C\u00f3rdoba",
"position": "D",
"jerseyNumber": "38",
"height": 190,
"userCount": 32,
"id": 1563953,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1131667200,
"proposedMarketValueRaw": {
"value": 49000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 10,
"totalLongBalls": 20,
"accurateLongBalls": 7,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.1,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0456
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"totalContest": 1,
"totalClearance": 6,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.1,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.015016
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0192754
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 25,
"totalLongBalls": 14,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0225,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00785312
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.2,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0101905
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0396,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0582,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0156546
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.0091,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0658044
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 75,
"touches": 42,
"rating": 7.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.1458,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0386856
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 16,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 4,
"duelLost": 10,
"duelWon": 9,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 82,
"touches": 43,
"rating": 6.9,
"possessionLostCtrl": 17,
"expectedGoals": 0.0634,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0269268
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 8,
"aerialWon": 6,
"duelLost": 11,
"duelWon": 12,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 75,
"touches": 40,
"rating": 7.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0492,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0162948
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"minutesPlayed": 15,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 8,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 3,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 5,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 8.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"goalsPrevented": -0.0905
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 79,
"touches": 62,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0301061
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 68,
"accuratePass": 61,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 59,
"totalLongBalls": 17,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 5,
"aerialWon": 5,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 2,
"totalClearance": 10,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 96,
"rating": 6.8,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.140595
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 30,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7,
"possessionLostCtrl": 20,
"expectedGoals": 0.1389,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.078313
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 38,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 4,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00589097
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 70,
"touches": 22,
"rating": 6.3,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 8,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.8,
"possessionLostCtrl": 23,
"expectedGoals": 0.4414,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0284579
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 9,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0273782
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0764,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0135606
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 79,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.024,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.104715
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 45,
"touches": 14,
"rating": 6.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0966,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0594078
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 22,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.016,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0380653
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"interceptionWon": 1,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Edu Exp\u00f3sito",
"slug": "edu-exposito",
"shortName": "E. Exp\u00f3sito",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 203,
"id": 877262,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838857600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 15,
"rating": 5.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"goalsPrevented": -1.643
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 78,
"accuratePass": 70,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 107,
"rating": 7.2,
"possessionLostCtrl": 12,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.450421
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 74,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 7,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 91,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00906972
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 85,
"accuratePass": 75,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 79,
"touches": 94,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00964739
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 46,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 10,
"duelWon": 5,
"challengeLost": 3,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 82,
"rating": 6.4,
"possessionLostCtrl": 17,
"expectedGoals": 0.0173,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0760032
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0723,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0371983
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 42,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 63,
"touches": 62,
"rating": 7.2,
"possessionLostCtrl": 16,
"expectedGoals": 0.0344,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0251267
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 67,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 6,
"duelWon": 10,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.7,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.25217
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 38,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 63,
"touches": 51,
"rating": 6.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.6576,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00852132
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 46,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"hitWoodwork": 1,
"goals": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 9.3,
"possessionLostCtrl": 20,
"expectedGoals": 0.6741,
"keyPass": 1,
"ratingVersions": {
"original": 9.3,
"alternative": null
},
"expectedAssists": 0.370961
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 3,
"minutesPlayed": 75,
"touches": 37,
"rating": 6.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.0167,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0884221
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 27,
"touches": 39,
"rating": 7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0218527
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceMissed": 3,
"onTargetScoringAttempt": 3,
"minutesPlayed": 27,
"touches": 12,
"rating": 5.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.5212,
"ratingVersions": {
"original": 5.7,
"alternative": null
},
"expectedAssists": 0.0363194
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 19,
"rating": 8.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0194,
"keyPass": 2,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.180271
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 15,
"touches": 19,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0288,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0170799
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 3,
"lastManTackle": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 14,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 22,
"totalLongBalls": 30,
"accurateLongBalls": 7,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 5,
"saves": 5,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.3,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -1.4357
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 46,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 3,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 9,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 81,
"rating": 6.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00630885
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 66,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 7,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00876851
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 67,
"accuratePass": 60,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0131242
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 2,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 2,
"bigChanceCreated": 2,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.4,
"possessionLostCtrl": 13,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.510381
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.1744,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0107345
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 42,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 52,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0154159
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 54,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0163,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0269891
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 33,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 11,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 4,
"minutesPlayed": 89,
"touches": 59,
"rating": 7.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0518,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0337058
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 14,
"duelWon": 1,
"dispossessed": 5,
"totalContest": 5,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"fouls": 2,
"minutesPlayed": 89,
"touches": 53,
"rating": 6.5,
"possessionLostCtrl": 22,
"expectedGoals": 0.1444,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0115141
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0111728
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 9,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 6,
"interceptionWon": 1,
"minutesPlayed": 10,
"touches": 11,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 1
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.0664
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 6.8,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0281354
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 70,
"totalLongBalls": 15,
"accurateLongBalls": 9,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 87,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.2655,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.477363
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 64,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0132074
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 32,
"rating": 6.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 49,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 3,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.3,
"possessionLostCtrl": 22,
"expectedGoals": 0.0225,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.343336
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 89,
"touches": 44,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.2517,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0273947
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 42,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 4,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 4,
"minutesPlayed": 83,
"touches": 73,
"rating": 8,
"possessionLostCtrl": 13,
"expectedGoals": 0.1557,
"keyPass": 5,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.43837
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 3,
"wasFouled": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.7,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0654886
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.3,
"possessionLostCtrl": 17,
"expectedGoals": 0.0672,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.129414
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 26,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.7012,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"minutesPlayed": 45,
"touches": 22,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.4934,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Kike Barja",
"slug": "kike-barja",
"shortName": "K. Barja",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 121,
"id": 591132,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860112000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0631\u062c\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 15,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 17,
"totalLongBalls": 28,
"accurateLongBalls": 14,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 3,
"totalClearance": 4,
"wasFouled": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"punches": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 8.4,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.00523824,
"goalsPrevented": 0.3603
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0283446
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 22,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 11,
"outfielderBlock": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0142763
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 25,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"bigChanceCreated": 1,
"totalClearance": 5,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0609446
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 20,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 4,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.4,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.585205
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.1182,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0169405
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00689588
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 45,
"rating": 7.5,
"possessionLostCtrl": 16,
"expectedGoals": 0.0336,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.312766
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0115003
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 14,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 6,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"goals": 2,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 84,
"touches": 36,
"rating": 8.5,
"possessionLostCtrl": 15,
"expectedGoals": 1.3837,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.00863482
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 9,
"touches": 3,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Hugo Novoa Ramos",
"firstName": "",
"lastName": "",
"slug": "hugo-novoa-ramos",
"shortName": "H. N. Ramos",
"position": "M",
"jerseyNumber": "16",
"height": 182,
"userCount": 346,
"id": 1001967,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1043366400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 21,
"accurateLongBalls": 12,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.441
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0611206
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 52,
"totalLongBalls": 12,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 5,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00832294
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 6,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.2206,
"ratingVersions": {
"original": 7.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 36,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0245,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0113974
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 85,
"touches": 51,
"rating": 7.4,
"possessionLostCtrl": 10,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.29682
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 68,
"touches": 36,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00663262
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 4,
"onTargetScoringAttempt": 2,
"goals": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 85,
"touches": 43,
"rating": 7.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.3456,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0110905
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 28,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.5154,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0513096
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 9,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 60,
"touches": 30,
"rating": 6.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.0268,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 24,
"rating": 6.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0168,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0106787
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 21,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0241828
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 2,
"fouls": 1,
"minutesPlayed": 22,
"touches": 6,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 3,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 22,
"touches": 12,
"rating": 7.4,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.155489
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 3,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 12,
"rating": 6.3,
"possessionLostCtrl": 3,
"expectedGoals": 0.0154,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai Sim\u00f3n",
"slug": "unai-simon",
"shortName": "U. Sim\u00f3n",
"position": "G",
"jerseyNumber": "1",
"height": 189,
"userCount": 4310,
"id": 797291,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 865987200,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"errorLeadToAGoal": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 73,
"touches": 43,
"rating": 5.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"goalsPrevented": -0.7626
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 49,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 4,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0496724
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 86,
"accuratePass": 81,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 7,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0106963
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 90,
"accuratePass": 80,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 100,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 44,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 10,
"totalContest": 4,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.0132,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.083482
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 43,
"rating": 6.3,
"possessionLostCtrl": 15,
"expectedGoals": 0.3198,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0127669
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 51,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 7,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.2258,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0780788
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 44,
"rating": 6.9,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00713179
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 22,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 3,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.1,
"possessionLostCtrl": 22,
"expectedGoals": 0.0926,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.514259
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0694,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0356147
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0441111
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Gerard Moreno",
"firstName": "",
"lastName": "",
"slug": "gerard-moreno",
"shortName": "G. Moreno",
"position": "F",
"jerseyNumber": "7",
"height": 180,
"userCount": 4216,
"id": 146866,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 44,
"touches": 22,
"rating": 6.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.1283,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0104648
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 17,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 1,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Arnau Sol\u00e0",
"firstName": "",
"lastName": "",
"slug": "arnau-sola",
"shortName": "A. Sol\u00e0",
"position": "D",
"jerseyNumber": "27",
"height": 179,
"userCount": 80,
"id": 997025,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049414400,
"proposedMarketValueRaw": {
"value": 410000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
}
}
},
"teamId": 24338,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 15,
"totalLongBalls": 25,
"accurateLongBalls": 7,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.4,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0104631,
"goalsPrevented": -0.8831
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 35,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.4,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0741889
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 61,
"accuratePass": 49,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 8,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 36,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 6,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0618009
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 3,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 5,
"minutesPlayed": 79,
"touches": 52,
"rating": 6.2,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0191567
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 37,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"shotOffTarget": 2,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 2,
"errorLeadToAGoal": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.2218,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0648266
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"wasFouled": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.101,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.139774
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 35,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 8,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 6.9,
"possessionLostCtrl": 23,
"expectedGoals": 0.1503,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.174423
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 56,
"touches": 40,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0206,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0351784
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.3,
"possessionLostCtrl": 21,
"expectedGoals": 0.0358,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0160571
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 4,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 34,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00764845
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.1144,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Iker Bachiller",
"firstName": "",
"lastName": "",
"slug": "bachiller-iker",
"shortName": "I. Bachiller",
"position": "D",
"jerseyNumber": "28",
"height": 169,
"userCount": 3,
"id": 978652,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031961600,
"proposedMarketValueRaw": {
"value": 24000,
"currency": "EUR"
}
},
"teamId": 262427,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Naim Garc\u00eda",
"firstName": "Naim Garc\u00eda",
"lastName": "",
"slug": "naim-garcia",
"shortName": "N. Garc\u00eda",
"position": "M",
"jerseyNumber": "27",
"height": 179,
"userCount": 227,
"id": 1134395,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023753600,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 16,
"totalLongBalls": 24,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.6456
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 4,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0134087
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.0252,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 32,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0088,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 50,
"touches": 32,
"rating": 7.2,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 78,
"touches": 44,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0919,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0630247
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 26,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 10,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 8,
"possessionLostCtrl": 24,
"expectedGoals": 0.5562,
"keyPass": 2,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.0858124
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.6743,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0534404
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 3,
"minutesPlayed": 77,
"touches": 30,
"rating": 7.3,
"possessionLostCtrl": 7,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.116349
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 19,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.2104,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.472458
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 4,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 59,
"touches": 38,
"rating": 7.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 3,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 40,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0261,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0418515
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 13,
"touches": 16,
"rating": 8.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0515,
"keyPass": 1,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.0850743
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 12,
"touches": 3,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.1651,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Urko Gonz\u00e1lez",
"slug": "urko-gonzalez",
"shortName": "U. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 131,
"id": 1064009,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985046400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "I\u00f1aki Rup\u00e9rez",
"slug": "inaki-ruperez",
"shortName": "I. Rup\u00e9rez",
"position": "D",
"jerseyNumber": "34",
"userCount": 32,
"id": 1657024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041897600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 24360,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Arkaitz Mariezkurrena",
"slug": "arkaitz-mariezkurrena",
"shortName": "A. Mariezkurrena",
"position": "F",
"jerseyNumber": "20",
"userCount": 28,
"id": 1526575,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112659200,
"proposedMarketValueRaw": {
"value": 220000,
"currency": "EUR"
}
},
"teamId": 24360,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": -1.4139
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 43,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"challengeLost": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0135306
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 56,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 65,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0444,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0278784
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 48,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.8,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0939857
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 49,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.6,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0229327
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 52,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 65,
"rating": 6.6,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0310145
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.1362,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0695067
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 4,
"minutesPlayed": 78,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0635,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0156579
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 30,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"minutesPlayed": 58,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0389,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.019593
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 58,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"minutesPlayed": 32,
"touches": 17,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0693,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0175928
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 32,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 12,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Jastin Garc\u00eda",
"slug": "jastin-garcia",
"shortName": "J. Garc\u00eda",
"position": "F",
"jerseyNumber": "31",
"height": 180,
"userCount": 140,
"id": 1518119,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1074211200
},
"teamId": 368693,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 7.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"goalsPrevented": 0.1781
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 54,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0355095
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 76,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.1,
"possessionLostCtrl": 3,
"expectedGoals": 0.3579,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0206987
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 85,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 102,
"rating": 7.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0209,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0138753
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 43,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 79,
"touches": 55,
"rating": 7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0240067
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 57,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 2,
"minutesPlayed": 79,
"touches": 69,
"rating": 7.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0246769
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 112,
"accuratePass": 103,
"totalLongBalls": 10,
"accurateLongBalls": 8,
"goalAssist": 1,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 121,
"rating": 8.5,
"possessionLostCtrl": 12,
"keyPass": 4,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.352819
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 51,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 72,
"rating": 7.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.1036,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0256938
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 61,
"touches": 48,
"rating": 8.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0588,
"keyPass": 3,
"ratingVersions": {
"original": 8.6,
"alternative": null
},
"expectedAssists": 0.218684
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 38,
"totalLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.0501,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0233355
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 79,
"touches": 40,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.3306,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0264697
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 30,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0157872
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 11,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 1,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Ya\u00f1ez",
"slug": "daniel-yanez",
"shortName": "D. Ya\u00f1ez",
"position": "F",
"jerseyNumber": "7",
"height": 177,
"userCount": 862,
"id": 1546404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1175040000
},
"teamId": 120854,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.2692
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"totalContest": 4,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 23,
"expectedGoals": 0.0193,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0173187
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 5,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.1201,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0187906
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 3,
"interceptionWon": 3,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.010422
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 53,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 7,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 80,
"rating": 7.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0638,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0140171
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jos\u00e9 Luis Gay\u00e0",
"slug": "jose-luis-gaya",
"shortName": "J. L. Gay\u00e0",
"position": "D",
"jerseyNumber": "14",
"height": 172,
"userCount": 1789,
"id": 227922,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801360000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.015326
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 4,
"aerialLost": 1,
"duelLost": 10,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 5,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"totalTackle": 3,
"minutesPlayed": 89,
"touches": 64,
"rating": 7.1,
"possessionLostCtrl": 27,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.604463
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 60,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0444635
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 44,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 3,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.0546,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0362071
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 60,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0466,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.2342,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 5,
"aerialWon": 2,
"duelWon": 7,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 30,
"touches": 46,
"rating": 7.8,
"possessionLostCtrl": 10,
"keyPass": 5,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.301895
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Rafa Mir",
"slug": "rafa-mir",
"shortName": "R. Mir",
"position": "F",
"jerseyNumber": "11",
"height": 189,
"userCount": 1282,
"id": 825754,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 866592000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0631, \u0631\u0627\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u064a\u0631"
}
}
},
"teamId": 2828,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 30,
"touches": 6,
"rating": 6.3,
"possessionLostCtrl": 2,
"expectedGoals": 0.7221,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0122,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0175947
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Iker Cordoba",
"slug": "iker-cordoba",
"shortName": "I. C\u00f3rdoba",
"position": "D",
"jerseyNumber": "38",
"height": 190,
"userCount": 32,
"id": 1563953,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1131667200,
"proposedMarketValueRaw": {
"value": 49000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 19,
"totalLongBalls": 28,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"errorLeadToAShot": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 5,
"punches": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.6,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.6838
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.2,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.353398
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 23,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 7,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0132365
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 10,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 7,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0290514
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 26,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.3072,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00597455
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 3,
"dispossessed": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 78,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 59,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0337477
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 72,
"touches": 36,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.0202,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.110484
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 31,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.3432,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 60,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 31,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"minutesPlayed": 18,
"touches": 11,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0767382
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 12,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.2324,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Alfonso Espino",
"slug": "alfonso-espino",
"shortName": "A. Espino",
"position": "D",
"jerseyNumber": "22",
"height": 172,
"userCount": 573,
"id": 542634,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694569600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 18,
"accurateLongBalls": 8,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.3133
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00584937
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 28,
"totalLongBalls": 15,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 7,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0148,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.1,
"possessionLostCtrl": 4,
"expectedGoals": 0.1097,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 72,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.130641
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 76,
"touches": 28,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.8629,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0168507
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 23,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.2317,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.160266
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 4,
"errorLeadToAShot": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.8144,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0612225
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 18,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"minutesPlayed": 86,
"touches": 45,
"rating": 6.2,
"possessionLostCtrl": 18,
"expectedGoals": 0.8646,
"keyPass": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.106307
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"penaltyWon": 1,
"minutesPlayed": 77,
"touches": 19,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0423,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0148763
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0524371
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Isco",
"slug": "isco",
"shortName": "Isco",
"position": "M",
"jerseyNumber": "22",
"height": 176,
"userCount": 24415,
"id": 103417,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703814400,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0625\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0121709
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 13,
"touches": 10,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.2064,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00943652
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Jes\u00fas Rodriguez",
"slug": "jesus-rodriguez",
"shortName": "J. Rodriguez",
"position": "F",
"jerseyNumber": "36",
"height": 185,
"userCount": 180,
"id": 1800245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1132531200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 14,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Carlos Guirao",
"firstName": "Carlos",
"lastName": "Guirao",
"slug": "carlos-guirao",
"shortName": "C. Guirao",
"position": "M",
"jerseyNumber": "16",
"userCount": 47,
"id": 1632259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051401600,
"proposedMarketValueRaw": {
"value": 91000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 25,
"totalLongBalls": 8,
"accurateLongBalls": 1,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.7517
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 47,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 87,
"rating": 6.8,
"possessionLostCtrl": 21,
"expectedGoals": 0.0453,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.542172
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 100,
"accuratePass": 92,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 6,
"totalClearance": 5,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 110,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0102222
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 90,
"accuratePass": 82,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 6,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 98,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0245268
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 1,
"minutesPlayed": 88,
"touches": 52,
"rating": 6.1,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0100309
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.023747
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0227,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0172235
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 60,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0275,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0305185
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"duelLost": 6,
"duelWon": 11,
"totalContest": 10,
"wonContest": 6,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.8,
"possessionLostCtrl": 19,
"expectedGoals": 0.1927,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.234411
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 24,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.9076,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0208247
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"minutesPlayed": 60,
"touches": 24,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.1406,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0612843
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 20,
"rating": 6.1,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.201291
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalOffside": 2,
"minutesPlayed": 30,
"touches": 12,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.5825,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 16,
"touches": 11,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelWon": 2,
"totalTackle": 2,
"minutesPlayed": 12,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": 0.2539
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"totalContest": 2,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 4,
"minutesPlayed": 58,
"touches": 43,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00540041
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 72,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 7,
"duelWon": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00696894
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 61,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.3,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0142397
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 58,
"touches": 40,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0538,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0114812
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 78,
"accuratePass": 70,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 10,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 6,
"minutesPlayed": 90,
"touches": 90,
"rating": 7.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0254517
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 3,
"goals": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 47,
"rating": 8.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.2713,
"keyPass": 1,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.120945
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0179966
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 14,
"duelWon": 6,
"challengeLost": 3,
"dispossessed": 4,
"totalContest": 6,
"wonContest": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.2,
"possessionLostCtrl": 18,
"expectedGoals": 0.031,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0842914
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 5,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 78,
"touches": 20,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0954,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0248579
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marvin Park",
"firstName": "",
"lastName": "",
"slug": "park-marvin",
"shortName": "M. Park",
"position": "D",
"jerseyNumber": "2",
"height": 177,
"userCount": 806,
"id": 960401,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 952387200,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalTackle": 1,
"minutesPlayed": 32,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0290157
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 32,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.042,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0420972
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"fouls": 1,
"minutesPlayed": 12,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.4935,
"keyPass": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0148115
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"shotOffTarget": 1,
"interceptionWon": 1,
"minutesPlayed": 13,
"touches": 7,
"rating": 6.7,
"expectedGoals": 0.0591,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0501,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 12,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": 0.1854
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 22,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.8,
"possessionLostCtrl": 19,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.216555
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 85,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0338,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 54,
"accuratePass": 44,
"totalLongBalls": 10,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.1,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.15731
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 6,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 3,
"totalClearance": 3,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 85,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0111643
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 68,
"touches": 31,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00923876
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 75,
"touches": 40,
"rating": 6.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.3595,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00621839
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 13,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 25,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.0776,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.314539
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 68,
"touches": 17,
"rating": 7.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.7056,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"fouls": 2,
"minutesPlayed": 22,
"touches": 14,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 22,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.219,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 15,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0193,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0226803
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 14,
"touches": 4,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"minutesPlayed": 14,
"touches": 2,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "C\u00e9sar de la Hoz",
"firstName": "",
"lastName": "",
"slug": "cesar-de-la-hoz",
"shortName": "C. de la Hoz",
"position": "M",
"jerseyNumber": "16",
"height": 179,
"userCount": 49,
"id": 233328,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701913600,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 1.851
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 44,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0348951
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 41,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 6,
"totalClearance": 5,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.3,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0133142
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 77,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 4,
"totalClearance": 6,
"outfielderBlock": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.5,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0166809
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 7,
"possessionLostCtrl": 17,
"expectedGoals": 0.0341,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.290618
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 52,
"accuratePass": 47,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 86,
"touches": 67,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0149,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.032983
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 53,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 7,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0154,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0563967
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 4,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 87,
"touches": 69,
"rating": 7.2,
"possessionLostCtrl": 21,
"expectedGoals": 0.1427,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0935724
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fer L\u00f3pez",
"slug": "fer-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "28",
"height": 186,
"userCount": 80,
"id": 1526628,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085356800,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 24336,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 43,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0696,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0104109
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 3,
"minutesPlayed": 65,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0133364
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"totalContest": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 65,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0439843
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 2,
"minutesPlayed": 47,
"touches": 47,
"rating": 8.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.1136,
"keyPass": 2,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.316629
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 25,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.3453,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 2,
"wasFouled": 2,
"minutesPlayed": 25,
"touches": 14,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.1516,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0189705
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Luca De La Torre",
"firstName": "",
"lastName": "",
"slug": "luca-de-la-torre",
"shortName": "L. D. L. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 652,
"id": 846492,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895881600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u062f\u064a \u0644\u0627 \u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0644. \u062f. \u0644. \u062a\u0648\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"totalContest": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00718471
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Yoel Lago",
"firstName": "Yoel",
"lastName": "Lago",
"slug": "yoel-lago",
"shortName": "Y. Lago",
"position": "D",
"jerseyNumber": "29",
"height": 185,
"userCount": 15,
"id": 1145100,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1080172800,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24336,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 27,
"totalLongBalls": 14,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -1.597
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 4,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.5,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0163106
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 58,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00508814
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 63,
"accuratePass": 62,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 69,
"rating": 6.3,
"possessionLostCtrl": 1,
"expectedGoals": 0.0362,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00690271
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 57,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0323,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.106286
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 53,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 7,
"fouls": 2,
"minutesPlayed": 90,
"touches": 74,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0104122
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 38,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"dispossessed": 3,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 65,
"rating": 6.4,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.085416
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"goalAssist": 0,
"duelWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 58,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.10144
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 40,
"rating": 7,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.355596
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 58,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0477,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.128249
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.7121,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.010418
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"dispossessed": 1,
"interceptionWon": 3,
"minutesPlayed": 32,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"minutesPlayed": 32,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0099134
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 14,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 5,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0526446
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Takuma Asano",
"firstName": "",
"lastName": "",
"slug": "takuma-asano",
"shortName": "T. Asano",
"position": "F",
"jerseyNumber": "11",
"height": 171,
"userCount": 2234,
"id": 309546,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 784425600,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 14,
"touches": 4,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0166,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.5011
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 86,
"touches": 60,
"rating": 6.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.0571,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0308532
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 59,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 6.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.0642,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0286425
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 46,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"shotOffTarget": 2,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0475,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0140811
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 5,
"fouls": 2,
"minutesPlayed": 75,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.2715,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0345737
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 55,
"accuratePass": 49,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 9,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0434,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0733428
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 58,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 86,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0288,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0457154
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.7963,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.291576
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0617833
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 64,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.0262,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00560558
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 27,
"rating": 7.1,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.20897
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0399756
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"minutesPlayed": 15,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"totalClearance": 1,
"minutesPlayed": 10,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0911355
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"duelWon": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 10,
"touches": 8,
"rating": 7.2,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.120094
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 16,
"totalLongBalls": 17,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelWon": 2,
"totalClearance": 1,
"wasFouled": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.1,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.6916
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 3,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"totalContest": 1,
"bigChanceCreated": 2,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.7,
"possessionLostCtrl": 15,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.248614
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 18,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 8,
"outfielderBlock": 2,
"interceptionWon": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.1,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"totalClearance": 7,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 83,
"touches": 40,
"rating": 6.3,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.1034,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.012656
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 70,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00853416
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.04,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0664929
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 13,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 70,
"touches": 37,
"rating": 6.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 8,
"aerialWon": 5,
"duelLost": 9,
"duelWon": 6,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 20,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.4411,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 77,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0141,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 2,
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 20,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 20,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.1469,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 6,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"minutesPlayed": 13,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"lastManTackle": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.9,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Kike Barja",
"slug": "kike-barja",
"shortName": "K. Barja",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 121,
"id": 591132,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860112000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0631\u062c\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 21,
"accurateLongBalls": 13,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.041
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00545267
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 9,
"totalClearance": 6,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 15,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 80,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00859433
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 41,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 90,
"touches": 70,
"rating": 7,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0137936
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"totalTackle": 1,
"minutesPlayed": 55,
"touches": 27,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 11,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.3,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0178391
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"penaltyWon": 1,
"totalOffside": 2,
"minutesPlayed": 71,
"touches": 28,
"rating": 7.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.7884,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00792299
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 55,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00547148
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 35,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0283812
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 35,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 19,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0046,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"fouls": 1,
"minutesPlayed": 10,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Urko Gonz\u00e1lez",
"slug": "urko-gonzalez",
"shortName": "U. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 131,
"id": 1064009,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985046400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 15,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -1.202
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 46,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 6.5,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.101407
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 80,
"accuratePass": 59,
"totalLongBalls": 19,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 5,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 96,
"rating": 7,
"possessionLostCtrl": 21,
"expectedGoals": 0.0641,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.017372
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 65,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"ownGoals": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0404,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0143848
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 74,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0120755
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Carlos Guirao",
"firstName": "Carlos",
"lastName": "Guirao",
"slug": "carlos-guirao",
"shortName": "C. Guirao",
"position": "M",
"jerseyNumber": "16",
"userCount": 47,
"id": 1632259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051401600,
"proposedMarketValueRaw": {
"value": 91000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 55,
"touches": 31,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00779681
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 61,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 83,
"touches": 92,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0887,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0266751
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Jes\u00fas Rodriguez",
"slug": "jesus-rodriguez",
"shortName": "J. Rodriguez",
"position": "F",
"jerseyNumber": "36",
"height": 185,
"userCount": 180,
"id": 1800245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1132531200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 11,
"dispossessed": 2,
"totalContest": 8,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 6,
"minutesPlayed": 83,
"touches": 50,
"rating": 6.7,
"possessionLostCtrl": 20,
"expectedGoals": 0.0559,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 44,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 4,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 13,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 5,
"wasFouled": 6,
"fouls": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.5,
"possessionLostCtrl": 19,
"expectedGoals": 0.0131,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.263345
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 9,
"duelWon": 1,
"dispossessed": 5,
"totalContest": 2,
"wonContest": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 55,
"touches": 33,
"rating": 6.2,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.278082
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 10,
"duelWon": 5,
"dispossessed": 4,
"totalContest": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 71,
"touches": 26,
"rating": 6.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0219,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"minutesPlayed": 35,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00901195
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 3,
"wasFouled": 3,
"minutesPlayed": 35,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00607176
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 19,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.114,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 21,
"totalLongBalls": 25,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 1,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 5,
"punches": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.6,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.3327
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.4,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0152929
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 39,
"totalLongBalls": 13,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 7,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0768,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00681844
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 47,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0138053
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0177,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.01264
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 74,
"touches": 37,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00822042
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 5,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 4,
"minutesPlayed": 82,
"touches": 39,
"rating": 6.5,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0402004
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.0362,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00517191
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 2,
"totalOffside": 3,
"minutesPlayed": 65,
"touches": 19,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.1076,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00709822
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 64,
"touches": 30,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0127,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0811526
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 2,
"minutesPlayed": 26,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.057858
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 25,
"touches": 10,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 13,
"rating": 6.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 2,
"totalClearance": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Alfonso Espino",
"slug": "alfonso-espino",
"shortName": "A. Espino",
"position": "D",
"jerseyNumber": "22",
"height": 172,
"userCount": 573,
"id": 542634,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694569600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pelayo Fern\u00e1ndez",
"firstName": "",
"lastName": "",
"slug": "pelayo-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "27",
"height": 193,
"userCount": 220,
"id": 1139724,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051574400,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 22,
"totalLongBalls": 17,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": -0.6482
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 56,
"touches": 48,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0154943
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 91,
"accuratePass": 68,
"totalLongBalls": 28,
"accurateLongBalls": 11,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 101,
"rating": 6.8,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0212912
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 40,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 9,
"interceptionWon": 2,
"totalTackle": 2,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 34,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.9,
"possessionLostCtrl": 17,
"expectedGoals": 0.0441,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00695305
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 75,
"touches": 49,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0136483
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 57,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0286,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.012284
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"goalAssist": 0,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.0229,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0548321
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 6,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 13,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 4,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 4,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.7,
"possessionLostCtrl": 19,
"expectedGoals": 0.3201,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0565051
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 56,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1841,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00950689
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"totalClearance": 1,
"minutesPlayed": 34,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0109491
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 34,
"touches": 21,
"rating": 8.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0946,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.00680641
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 33,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00766171
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai Sim\u00f3n",
"slug": "unai-simon",
"shortName": "U. Sim\u00f3n",
"position": "G",
"jerseyNumber": "1",
"height": 189,
"userCount": 4310,
"id": 797291,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 865987200,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 38,
"totalLongBalls": 14,
"accurateLongBalls": 5,
"goalAssist": 0,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.0487
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.0151,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0170516
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 71,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 9,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 69,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 3,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.0585,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.00777986
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.1298,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0287453
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 58,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0524,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0197363
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 95,
"accuratePass": 89,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 110,
"rating": 7.2,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0214871
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 38,
"rating": 7.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.8218,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.00971352
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 25,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 3,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.625,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0686985
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 26,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 1,
"duelWon": 4,
"totalContest": 4,
"wonContest": 3,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.0837,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0182498
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 4,
"totalContest": 7,
"wonContest": 2,
"bigChanceCreated": 1,
"bigChanceMissed": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 3,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.6,
"possessionLostCtrl": 16,
"expectedGoals": 1.3928,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.312531
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 45,
"touches": 37,
"rating": 7.1,
"possessionLostCtrl": 7,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.383909
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"bigChanceCreated": 1,
"wasFouled": 2,
"minutesPlayed": 23,
"touches": 27,
"rating": 7.3,
"possessionLostCtrl": 2,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.145149
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lorenzo Aguado",
"slug": "lorenzo-aguado-herrera",
"shortName": "L. Aguado",
"position": "D",
"jerseyNumber": "39",
"height": 177,
"userCount": 673,
"id": 1526535,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1032393600,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Diego Aguado Facio",
"slug": "diego-aguado-facio",
"shortName": "D. A. Facio",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 565,
"id": 1614687,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1170806400
},
"teamId": 120854,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Chema Andr\u00e9s",
"firstName": "Chema Andr\u00e9s",
"slug": "chema-andres",
"shortName": "C. Andr\u00e9s",
"position": "M",
"jerseyNumber": "36",
"height": 190,
"userCount": 2044,
"id": 1464641,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 14,
"totalLongBalls": 23,
"accurateLongBalls": 9,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.3863
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0222,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00977333
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00584701
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 4,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 78,
"touches": 28,
"rating": 6.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0179,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0350243
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 9,
"rating": 5.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 5.8,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"shotOffTarget": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0755,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0705803
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.0943,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0271822
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 66,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0205,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0327572
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 14,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 9,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 34,
"rating": 6.8,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"blockedScoringAttempt": 1,
"totalOffside": 1,
"minutesPlayed": 21,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.0755,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0263,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 24,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"minutesPlayed": 24,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.1167,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00773436
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 12,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0104915
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 1
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 19,
"totalLongBalls": 19,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 3,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": -0.5756
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"totalTackle": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 6,
"goalAssist": 0,
"duelWon": 3,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 41,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00506376
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 7,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0456082
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.1553,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0853412
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.2111,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.162211
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 78,
"touches": 42,
"rating": 7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0112453
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 89,
"touches": 44,
"rating": 7.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.378,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.57235
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.1649,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0666201
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 72,
"touches": 24,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.9246,
"keyPass": 2,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0745841
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 11,
"rating": 6.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00834935
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Gerard Moreno",
"firstName": "",
"lastName": "",
"slug": "gerard-moreno",
"shortName": "G. Moreno",
"position": "F",
"jerseyNumber": "7",
"height": 180,
"userCount": 4216,
"id": 146866,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 8,
"rating": 7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0606,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0106146
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 2,
"expectedGoals": 0.2096,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 1
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.5892
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 64,
"accuratePass": 61,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 73,
"touches": 77,
"rating": 6.9,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0252267
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 95,
"accuratePass": 91,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 104,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00778834
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 96,
"accuratePass": 91,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 107,
"rating": 7.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.017,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0305558
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.2583,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0127626
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 65,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 59,
"touches": 79,
"rating": 7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0515671
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 82,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 98,
"rating": 7.1,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0852758
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 54,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 88,
"rating": 7.1,
"possessionLostCtrl": 22,
"expectedGoals": 0.0463,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.161528
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 73,
"touches": 26,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.0229,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0196042
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 3,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"minutesPlayed": 45,
"touches": 26,
"rating": 6.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0236,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0312037
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"fouls": 1,
"minutesPlayed": 58,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0628,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.189204
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"minutesPlayed": 31,
"touches": 32,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0111514
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 32,
"touches": 13,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.1164,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0844948
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 22,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0116603
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 17,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00708578
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Ricard Artero",
"firstName": "Ricard Artero",
"lastName": "",
"slug": "ricard-artero",
"shortName": "R. Artero",
"position": "M",
"jerseyNumber": "36",
"height": 181,
"userCount": 52,
"id": 1134432,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044403200,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 368693,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 34,
"totalLongBalls": 12,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": 1.0381
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0234,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00653152
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 57,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 82,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 5,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 100,
"rating": 6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00846936
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 42,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 14,
"totalContest": 6,
"wonContest": 5,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalTackle": 1,
"wasFouled": 7,
"fouls": 3,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.029,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.19858
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 85,
"touches": 51,
"rating": 6.3,
"possessionLostCtrl": 14,
"expectedGoals": 0.0455,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.159122
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 3,
"interceptionWon": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0533684
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 62,
"touches": 16,
"rating": 6.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.2683,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 36,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 78,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.1965,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00607333
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 17,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 6.6,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0464418
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 3,
"blockedScoringAttempt": 1,
"minutesPlayed": 28,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0632,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0220677
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 8,
"touches": 15,
"rating": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00685589
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "C\u00e9sar de la Hoz",
"firstName": "",
"lastName": "",
"slug": "cesar-de-la-hoz",
"shortName": "C. de la Hoz",
"position": "M",
"jerseyNumber": "16",
"height": 179,
"userCount": 49,
"id": 233328,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701913600,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.1,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.1272
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 49,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.5,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.418483
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 63,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1382,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00501019
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 62,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.9456,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.00612529
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"totalContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 45,
"touches": 37,
"rating": 7.2,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0978246
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 37,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0241,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.388018
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 64,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 80,
"rating": 7.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.5279,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.112268
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 47,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 79,
"touches": 63,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0363013
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 46,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 9,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.1076,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.16668
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalOffside": 1,
"minutesPlayed": 64,
"touches": 56,
"rating": 7.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.6476,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.150767
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 33,
"rating": 8.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.7959,
"keyPass": 2,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.149467
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 2,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0979732
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"minutesPlayed": 26,
"touches": 14,
"rating": 7.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.8405,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.015711
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 5,
"goalAssist": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 14,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0244,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.597876
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"dispossessed": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0154292
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 10,
"totalLongBalls": 20,
"accurateLongBalls": 6,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": 0.1222
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 10,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"totalTackle": 8,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00614035
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalClearance": 8,
"outfielderBlock": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 8.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.2167,
"keyPass": 2,
"ratingVersions": {
"original": 8.5,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 17,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 38,
"rating": 7.2,
"possessionLostCtrl": 7,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.234605
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 11,
"duelWon": 1,
"dispossessed": 6,
"totalContest": 2,
"bigChanceMissed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 25,
"rating": 5.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.3725,
"ratingVersions": {
"original": 5.6,
"alternative": null
},
"expectedAssists": 0.0240827
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0102087
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0428906
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.2,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.200279
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 21,
"rating": 7.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.1178,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00804884
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"minutesPlayed": 29,
"touches": 7,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 4,
"totalTackle": 2,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 15,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.1466,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 2,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Tristan Jimenez",
"firstName": "",
"lastName": "",
"slug": "pol-tristan-jimenez",
"shortName": "P. T. Jimenez",
"position": "G",
"jerseyNumber": "38",
"height": 188,
"userCount": 14,
"id": 962624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016409600,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Edu Exp\u00f3sito",
"slug": "edu-exposito",
"shortName": "E. Exp\u00f3sito",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 203,
"id": 877262,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838857600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 24,
"rating": 6.2,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -1.7667
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 80,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0344,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0269236
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 108,
"accuratePass": 102,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 6,
"totalClearance": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 118,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0323549
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 101,
"accuratePass": 95,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 111,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1092,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0277921
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 39,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.021,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0637019
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 55,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.1085,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.219536
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 65,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 79,
"rating": 6.6,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0638556
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 73,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 10,
"dispossessed": 3,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 80,
"touches": 106,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0524,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.761964
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 49,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.0601,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.016912
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 55,
"accuratePass": 42,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.6,
"possessionLostCtrl": 18,
"expectedGoals": 1.0788,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.104799
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1225,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"dispossessed": 1,
"totalContest": 3,
"blockedScoringAttempt": 1,
"minutesPlayed": 45,
"touches": 33,
"rating": 5.9,
"possessionLostCtrl": 18,
"expectedGoals": 0.025,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00894638
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0519947
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 23,
"touches": 38,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0371233
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 9,
"touches": 6,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 11,
"totalLongBalls": 13,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.0483
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"lastManTackle": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 77,
"touches": 36,
"rating": 7.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.2858,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0881554
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 37,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.3,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0789995
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 51,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.091,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00749609
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 36,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 3,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.8,
"possessionLostCtrl": 23,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0272079
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 46,
"accuratePass": 38,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 8,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0427075
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 70,
"touches": 26,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0098,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00545118
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 77,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.061,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0852057
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 16,
"accurateCross": 4,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.6,
"possessionLostCtrl": 24,
"expectedGoals": 0.2704,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.343878
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.1,
"possessionLostCtrl": 16,
"expectedGoals": 0.1189,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.050102
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 70,
"touches": 28,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.1346,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0236505
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 3,
"minutesPlayed": 20,
"touches": 19,
"rating": 6.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0489,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 9,
"rating": 6.5,
"expectedGoals": 0.1121,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0263012
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 23,
"rating": 7.1,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0205589
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 2,
"dispossessed": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 11,
"rating": 6.8,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.221032
},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 13,
"totalLongBalls": 29,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 5,
"goodHighClaim": 4,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"punches": 3,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 51,
"rating": 8.1,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.00562257,
"goalsPrevented": 0.424
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0619,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00573077
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 11,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 7,
"totalClearance": 10,
"outfielderBlock": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 17,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.1487,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 10,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0207881
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 6,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 14,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 8,
"wonContest": 7,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 3,
"minutesPlayed": 77,
"touches": 51,
"rating": 7.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.0138,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.755017
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"interceptionWon": 3,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 8,
"possessionLostCtrl": 12,
"expectedGoals": 0.4545,
"keyPass": 2,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.0821567
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.199085
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"bigChanceMissed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 82,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.1872,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00605505
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 27,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0609,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Iker Bachiller",
"firstName": "",
"lastName": "",
"slug": "bachiller-iker",
"shortName": "I. Bachiller",
"position": "D",
"jerseyNumber": "28",
"height": 169,
"userCount": 3,
"id": 978652,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031961600,
"proposedMarketValueRaw": {
"value": 24000,
"currency": "EUR"
}
},
"teamId": 262427,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -1.0943
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 56,
"touches": 56,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0983,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0118443
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 79,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 6,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 89,
"touches": 86,
"rating": 6.8,
"expectedGoals": 0.3614,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0287276
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 110,
"accuratePass": 99,
"totalLongBalls": 12,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 7,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 119,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.0193,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0853452
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 22,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0121259
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 2,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 57,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.020923
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 83,
"accuratePass": 74,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 1,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 4,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.2494,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.17714
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 47,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"interceptionWon": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 8.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.3364,
"keyPass": 5,
"ratingVersions": {
"original": 8.8,
"alternative": null
},
"expectedAssists": 0.375935
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 57,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.1936,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0180013
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 2,
"totalContest": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.119899
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.5586,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.161483
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 32,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"interceptionWon": 2,
"minutesPlayed": 64,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.434502
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.2773,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.133795
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 34,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00903679
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 33,
"touches": 28,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.2013,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.137985
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 34,
"accuratePass": 33,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.240241
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 1,
"keyPass": 1,
"expectedAssists": 0.15338
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 15,
"totalLongBalls": 28,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 7,
"punches": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.8,
"possessionLostCtrl": 24,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 0.2452
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 83,
"touches": 43,
"rating": 6.9,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00755864
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 9,
"outfielderBlock": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"bigChanceMissed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 3,
"interceptionWon": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.2931,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 11,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 3,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 47,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0379685
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 4,
"goalAssist": 1,
"aerialWon": 2,
"duelWon": 5,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 83,
"touches": 46,
"rating": 7.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00622275
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 68,
"touches": 27,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0429618
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"totalOffside": 2,
"minutesPlayed": 73,
"touches": 31,
"rating": 7.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.06,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.20157
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 4,
"duelLost": 7,
"duelWon": 4,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0362,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.391538
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 9,
"totalContest": 8,
"wonContest": 4,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0162011
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 73,
"touches": 21,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.1134,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0138953
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 22,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marvin Park",
"firstName": "",
"lastName": "",
"slug": "park-marvin",
"shortName": "M. Park",
"position": "D",
"jerseyNumber": "2",
"height": 177,
"userCount": 806,
"id": 960401,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 952387200,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"minutesPlayed": 17,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 17,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 16,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 16,
"rating": 6.3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 29,
"totalLongBalls": 19,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.5,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.4008
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 2,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 78,
"touches": 69,
"rating": 6.7,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0295778
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 50,
"totalLongBalls": 11,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.9,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00504101
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 53,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 3,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.0219,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00569919
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.3,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0148665
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.0447,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00645294
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 35,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 19,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 9,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.6,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0264816
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 70,
"touches": 51,
"rating": 7.1,
"possessionLostCtrl": 20,
"expectedGoals": 0.074,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.20301
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 5,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 70,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.0456,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0910873
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 2,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"lastManTackle": 1,
"totalTackle": 3,
"wasFouled": 3,
"minutesPlayed": 85,
"touches": 47,
"rating": 7.6,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.207676
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 79,
"touches": 24,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.2198,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelWon": 2,
"totalTackle": 2,
"minutesPlayed": 20,
"touches": 8,
"rating": 6.8,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 20,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 5,
"rating": 7.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.3512,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 9,
"touches": 2,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pere Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "pere-garcia",
"shortName": "P. Garc\u00eda",
"position": "G",
"jerseyNumber": "31",
"height": 188,
"userCount": 9,
"id": 1002521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 47000,
"currency": "EUR"
}
},
"teamId": 34997,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 25,
"totalLongBalls": 12,
"accurateLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -0.4986
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.3,
"possessionLostCtrl": 14,
"expectedGoals": 0.0148,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0158682
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 56,
"totalLongBalls": 15,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 1,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 5,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0103205
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 49,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 44,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 7,
"totalClearance": 4,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 4,
"minutesPlayed": 84,
"touches": 67,
"rating": 7.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jos\u00e9 Luis Gay\u00e0",
"slug": "jose-luis-gaya",
"shortName": "J. L. Gay\u00e0",
"position": "D",
"jerseyNumber": "14",
"height": 172,
"userCount": 1789,
"id": 227922,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801360000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.5,
"possessionLostCtrl": 18,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.146987
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 75,
"touches": 32,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.7884,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0083635
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 85,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.1245,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00619306
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 75,
"touches": 66,
"rating": 6.7,
"possessionLostCtrl": 19,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.194747
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 23,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 13,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 2,
"shotOffTarget": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.0411,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0338606
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00725915
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 15,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 10,
"touches": 6,
"rating": 6,
"possessionLostCtrl": 3,
"expectedGoals": 0.3331,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 10,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00504201
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Iker Cordoba",
"slug": "iker-cordoba",
"shortName": "I. C\u00f3rdoba",
"position": "D",
"jerseyNumber": "38",
"height": 190,
"userCount": 32,
"id": 1563953,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1131667200,
"proposedMarketValueRaw": {
"value": 49000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 13,
"totalLongBalls": 25,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 2,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.0521
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 3,
"dispossessed": 2,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0255013
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 33,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0115283
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00672941
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 27,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"blockedScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 77,
"touches": 47,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0452,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.187827
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 11,
"duelWon": 2,
"challengeLost": 4,
"dispossessed": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 60,
"touches": 32,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.3729,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0292904
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"totalContest": 3,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 77,
"touches": 34,
"rating": 6.4,
"possessionLostCtrl": 17,
"expectedGoals": 0.0297,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 9,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 70,
"touches": 40,
"rating": 8.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.3665,
"keyPass": 4,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.237921
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"goalAssist": 1,
"totalCross": 8,
"accurateCross": 3,
"duelLost": 12,
"duelWon": 8,
"dispossessed": 3,
"totalContest": 14,
"wonContest": 5,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.4,
"possessionLostCtrl": 24,
"expectedGoals": 0.2151,
"keyPass": 4,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 1.08297
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 60,
"touches": 17,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.2863,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 30,
"touches": 8,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 30,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0215,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"fouls": 1,
"minutesPlayed": 20,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00611388
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai Sim\u00f3n",
"slug": "unai-simon",
"shortName": "U. Sim\u00f3n",
"position": "G",
"jerseyNumber": "1",
"height": 189,
"userCount": 4310,
"id": 797291,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 865987200,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u0648\u0646, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u0645\u0648\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.5478
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 7,
"challengeLost": 4,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 7,
"fouls": 1,
"minutesPlayed": 84,
"touches": 54,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00836016
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 55,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 3,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0146828
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 93,
"accuratePass": 80,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 10,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 103,
"rating": 6.8,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 75,
"touches": 60,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 66,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 6,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 99,
"rating": 6.8,
"possessionLostCtrl": 19,
"expectedGoals": 0.412,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.016735
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 4,
"wonContest": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 60,
"touches": 35,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.101,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0402133
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 11,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 8,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0253,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.11923
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0898,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.447493
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 7,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 4,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 60,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 19,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.119372
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0768,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 30,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalOffside": 2,
"minutesPlayed": 30,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 14,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"minutesPlayed": 15,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"totalTackle": 2,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 6,
"totalLongBalls": 17,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.1,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": -0.479
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 30,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 3,
"totalClearance": 8,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"totalClearance": 8,
"outfielderBlock": 2,
"interceptionWon": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 3,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 5.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.0247,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00514611
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 75,
"touches": 40,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00760901
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.2,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0203418
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 28,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 58,
"touches": 42,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00612969
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.0161,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0154339
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 3,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0306985
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 59,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0465,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00931782
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 5,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 86,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00945975
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 32,
"touches": 24,
"rating": 6.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0326,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0120449
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 31,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00828978
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 15,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 8,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Naim Garc\u00eda",
"firstName": "Naim Garc\u00eda",
"lastName": "",
"slug": "naim-garcia",
"shortName": "N. Garc\u00eda",
"position": "M",
"jerseyNumber": "27",
"height": 179,
"userCount": 227,
"id": 1134395,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023753600,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"goodHighClaim": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 66,
"accuratePass": 62,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"interceptionWon": 3,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 8.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0137,
"keyPass": 1,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.195052
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 43,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 1,
"totalClearance": 4,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0376844
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 73,
"accuratePass": 64,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 5,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 85,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.1124,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0367368
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 40,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0154052
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 38,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 75,
"touches": 60,
"rating": 8.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.3687,
"keyPass": 2,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.185369
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 65,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.2,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0816989
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 89,
"accuratePass": 85,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 8,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 101,
"rating": 7.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0401159
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 56,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 87,
"touches": 82,
"rating": 8,
"possessionLostCtrl": 16,
"expectedGoals": 0.3362,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.0843453
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"duelLost": 7,
"duelWon": 10,
"dispossessed": 4,
"totalContest": 8,
"wonContest": 5,
"bigChanceCreated": 3,
"shotOffTarget": 1,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 61,
"rating": 8.5,
"possessionLostCtrl": 25,
"expectedGoals": 0.0501,
"keyPass": 5,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.712727
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 35,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 5,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 2,
"goals": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 83,
"touches": 61,
"rating": 7.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.8977,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0459796
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"minutesPlayed": 15,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.1235,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0129166
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.230093
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"minutesPlayed": 3,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Diego Aguado Facio",
"slug": "diego-aguado-facio",
"shortName": "D. A. Facio",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 565,
"id": 1614687,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1170806400
},
"teamId": 120854,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 2,
"wasFouled": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0551
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.1,
"possessionLostCtrl": 15,
"expectedGoals": 0.0545,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0344998
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 48,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 7,
"outfielderBlock": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0081578
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 51,
"totalLongBalls": 8,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 6,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0113039
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 81,
"touches": 59,
"rating": 6.8,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0149143
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 13,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.7,
"possessionLostCtrl": 19,
"expectedGoals": 0.0365,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.069508
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 52,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0951,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0274806
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 6,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 73,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1037,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00893924
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 80,
"touches": 37,
"rating": 7.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.3193,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0482379
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 73,
"touches": 33,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.121104
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.4412,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.102074
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"shotOffTarget": 1,
"minutesPlayed": 17,
"touches": 12,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0253,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"minutesPlayed": 17,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 10,
"touches": 12,
"rating": 7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0141,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00634
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Mat\u00edas \u00c1rbol",
"firstName": "",
"lastName": "",
"slug": "matias-arbol",
"shortName": "M. \u00c1rbol",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 26,
"id": 1192489,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031788800,
"proposedMarketValueRaw": {
"value": 96000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 25,
"totalLongBalls": 23,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00624823,
"goalsPrevented": 0.0646
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0149459
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 42,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 86,
"touches": 60,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0154,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0118283
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 51,
"totalLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0111094
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0106487
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 2,
"duelLost": 4,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 71,
"touches": 28,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00668523
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 3,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 46,
"touches": 37,
"rating": 5.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.109,
"keyPass": 1,
"ratingVersions": {
"original": 5.6,
"alternative": null
},
"expectedAssists": 0.0251075
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 86,
"touches": 24,
"rating": 6.8,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.223642
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 7,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 8,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 71,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.238,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.2672,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0705627
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 19,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.2132,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0248048
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 19,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.0154,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 3,
"challengeLost": 2,
"totalContest": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 8,
"touches": 5,
"rating": 5.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 5.8,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 4,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 19,
"accurateLongBalls": 11,
"goalAssist": 0,
"totalClearance": 3,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 46,
"rating": 8.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"goalsPrevented": 0.5223
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.2,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0650638
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 28,
"totalLongBalls": 12,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.4,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 7,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 54,
"rating": 7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 39,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1338,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0220947
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 11,
"duelWon": 10,
"challengeLost": 3,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 4,
"penaltyConceded": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0118617
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.104005
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 66,
"touches": 29,
"rating": 7.1,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.254318
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 8,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 87,
"touches": 25,
"rating": 8.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.9188,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.0120142
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 10,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 7,
"totalContest": 7,
"wonContest": 3,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 78,
"touches": 35,
"rating": 6.8,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00894574
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"challengeLost": 1,
"totalContest": 2,
"interceptionWon": 1,
"minutesPlayed": 24,
"touches": 12,
"rating": 5.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00808887
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 24,
"touches": 17,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0291,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 12,
"touches": 3,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"dispossessed": 1,
"minutesPlayed": 11,
"touches": 4,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 10,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Kike Barja",
"slug": "kike-barja",
"shortName": "K. Barja",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 121,
"id": 591132,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860112000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0631\u062c\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"totalLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.0038
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 44,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0110611
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 56,
"accuratePass": 48,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 1,
"penaltyConceded": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0072109
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 43,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"totalContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"penaltyWon": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0756,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0985798
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 77,
"touches": 59,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0422,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.331816
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"goalAssist": 1,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 86,
"touches": 59,
"rating": 7.3,
"possessionLostCtrl": 18,
"expectedGoals": 0.0445,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0748337
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 61,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 6.9,
"possessionLostCtrl": 17,
"expectedGoals": 0.0691,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0961885
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 72,
"touches": 58,
"rating": 6.6,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0213584
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 33,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 6,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 8.4,
"possessionLostCtrl": 27,
"expectedGoals": 0.5518,
"keyPass": 4,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.502194
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 10,
"duelWon": 10,
"dispossessed": 5,
"totalContest": 5,
"wonContest": 2,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 3,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.4,
"possessionLostCtrl": 25,
"expectedGoals": 0.4815,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0959886
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 32,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0234,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.335206
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Gerard Moreno",
"firstName": "",
"lastName": "",
"slug": "gerard-moreno",
"shortName": "G. Moreno",
"position": "F",
"jerseyNumber": "7",
"height": 180,
"userCount": 4216,
"id": 146866,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 37,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 1.027,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.165904
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.2105,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0100409
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Antonio Espigares",
"firstName": "",
"lastName": "",
"slug": "espigares-antonio",
"shortName": "A. Espigares",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 24,
"id": 1142261,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1094342400,
"proposedMarketValueRaw": {
"value": 465000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Alassane Diatta",
"slug": "alassane-diatta",
"shortName": "A. Diatta",
"position": "M",
"jerseyNumber": "29",
"height": 190,
"userCount": 78,
"id": 1893907,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1116028800
},
"teamId": 24338,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"saves": 2,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.9863
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 28,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 4,
"interceptionWon": 3,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 90,
"touches": 67,
"rating": 7,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0509407
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.010305
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 43,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.0814,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0140099
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 42,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.2,
"possessionLostCtrl": 15,
"expectedGoals": 0.0238,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.537045
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 19,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 7,
"possessionLostCtrl": 17,
"expectedGoals": 0.5749,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.243334
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 2,
"bigChanceCreated": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 75,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00986148
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.009,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.11962
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 62,
"touches": 28,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.1914,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0118697
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 19,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 6,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 16,
"expectedGoals": 0.4229,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.250412
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0656438
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"minutesPlayed": 28,
"touches": 13,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.6248,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.005782
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 7,
"rating": 6,
"possessionLostCtrl": 2,
"expectedGoals": 0.5332,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0237713
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 1,
"touches": 6,
"possessionLostCtrl": 2,
"keyPass": 1,
"expectedAssists": 0.111747
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 33,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 4,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"punches": 1,
"totalKeeperSweeper": 6,
"accurateKeeperSweeper": 6,
"minutesPlayed": 90,
"touches": 58,
"rating": 8.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"goalsPrevented": 0.6476
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 52,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAGoal": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0342138
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 63,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00557313
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 66,
"totalLongBalls": 16,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 4,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 89,
"rating": 6.5,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00667861
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 16,
"totalLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 40,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00653279
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.043432
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 65,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 82,
"touches": 89,
"rating": 6.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0274,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0322457
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 6,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"outfielderBlock": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.9756,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0738468
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 46,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 75,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.101683
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 41,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 65,
"rating": 7.2,
"possessionLostCtrl": 18,
"expectedGoals": 0.0281,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0635438
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 30,
"rating": 7.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.3788,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0265304
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.477874
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 12,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0147118
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 15,
"touches": 13,
"rating": 6.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.3338,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00537167
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 5,
"possessionLostCtrl": 1
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Diego Kochen",
"firstName": "Diego Kochen",
"lastName": "",
"slug": "kochen-diego",
"shortName": "D. Kochen",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 2394,
"id": 1402907,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1142726400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "\u00c1lvaro Cort\u00e9s",
"slug": "alvaro-cortes",
"shortName": "\u00c1. Cort\u00e9s",
"position": "D",
"jerseyNumber": "43",
"height": 189,
"userCount": 778,
"id": 1464652,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1111017600,
"proposedMarketValueRaw": {
"value": 135000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Noah Darvich",
"firstName": "Noah Darvich",
"slug": "darvich-noah",
"shortName": "N. Darvich",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 5052,
"id": 1469995,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1159142400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 36,
"totalLongBalls": 16,
"accurateLongBalls": 5,
"goalAssist": 0,
"goodHighClaim": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -0.8318
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 76,
"accuratePass": 70,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 91,
"rating": 7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0391265
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 107,
"accuratePass": 99,
"totalLongBalls": 10,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 118,
"rating": 7.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00918615
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 111,
"accuratePass": 101,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 116,
"rating": 7.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.7423,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0287839
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 95,
"accuratePass": 88,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 118,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0968455
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 71,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"lastManTackle": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.02266
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 64,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 82,
"touches": 85,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0371,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0795123
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 3,
"minutesPlayed": 60,
"touches": 54,
"rating": 7.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.0551,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.289895
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 26,
"goalAssist": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"minutesPlayed": 60,
"touches": 39,
"rating": 7.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.2096,
"keyPass": 3,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 1.04182
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 2,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 45,
"rating": 9.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0969,
"keyPass": 3,
"ratingVersions": {
"original": 9.1,
"alternative": null
},
"expectedAssists": 1.08647
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 71,
"touches": 24,
"rating": 8.5,
"possessionLostCtrl": 5,
"expectedGoals": 2.1571,
"keyPass": 1,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.00654754
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 41,
"accuratePass": 41,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 49,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0342047
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 30,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.1724,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0958608
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"minutesPlayed": 19,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0400702
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 8,
"touches": 10,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ricard Artero",
"firstName": "Ricard Artero",
"lastName": "",
"slug": "ricard-artero",
"shortName": "R. Artero",
"position": "M",
"jerseyNumber": "36",
"height": 181,
"userCount": 52,
"id": 1134432,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044403200,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 368693,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Min-su Kim",
"slug": "min-su-kim",
"shortName": "M. Kim",
"position": "F",
"jerseyNumber": "29",
"height": 177,
"userCount": 380,
"id": 1892528,
"country": {
"alpha2": "KR",
"alpha3": "KOR",
"name": "South Korea",
"slug": "south-korea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1137628800
},
"teamId": 368693,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 15,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 6.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"goalsPrevented": -0.7187
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 81,
"touches": 29,
"rating": 6.3,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0943594
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 6,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0161495
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 26,
"rating": 6.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00576031
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 9,
"challengeLost": 3,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 20,
"rating": 5.6,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 5.6,
"alternative": null
},
"expectedAssists": 0.0139417
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.3,
"possessionLostCtrl": 15,
"expectedGoals": 0.035,
"keyPass": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0746607
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 64,
"touches": 33,
"rating": 6.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.0451,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.014014
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0436384
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0259,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0259686
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 64,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.9,
"possessionLostCtrl": 5,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.150304
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 26,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0296,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"blockedScoringAttempt": 2,
"fouls": 1,
"minutesPlayed": 26,
"touches": 16,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.154,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.028332
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 26,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.1315,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0131857
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 2,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"goodHighClaim": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"goalsPrevented": -1.4227
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 50,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 2,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 82,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.073901
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 38,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"totalClearance": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 5.9,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00550895
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 44,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.0795,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00545612
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"minutesPlayed": 61,
"touches": 33,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 52,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.0411,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0358231
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 42,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 61,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0198733
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 14,
"expectedGoals": 0.0528,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0186594
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 42,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 76,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0243,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.109543
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 61,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0223,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0292158
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 7,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.8842,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.032856
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 29,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0637906
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 27,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0156914
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 2,
"wasFouled": 3,
"minutesPlayed": 29,
"touches": 27,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0587,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.102812
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 2,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 12,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.0191,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.035037
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.024,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 15,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.9794
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 6,
"minutesPlayed": 85,
"touches": 57,
"rating": 6.6,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00999898
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 27,
"totalLongBalls": 8,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 6,
"outfielderBlock": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 71,
"touches": 37,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00724457
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 8.1,
"possessionLostCtrl": 22,
"expectedGoals": 0.2719,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0356188
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"totalContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"minutesPlayed": 76,
"touches": 33,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.2844,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0157882
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 4,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.0302,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0185374
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.1,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.389475
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 3,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 85,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0349,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.175782
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 71,
"touches": 29,
"rating": 7.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.6126,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0392555
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 6,
"duelLost": 3,
"duelWon": 7,
"shotOffTarget": 2,
"totalClearance": 2,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 88,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.4138,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0242864
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"outfielderBlock": 1,
"minutesPlayed": 19,
"touches": 5,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 19,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.156022
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.3,
"possessionLostCtrl": 2,
"expectedGoals": 0.0521,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 15,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 2,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pere Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "pere-garcia",
"shortName": "P. Garc\u00eda",
"position": "G",
"jerseyNumber": "31",
"height": 188,
"userCount": 9,
"id": 1002521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 47000,
"currency": "EUR"
}
},
"teamId": 34997,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.3294
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 62,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 98,
"rating": 7.1,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0198203
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 75,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 92,
"rating": 7.5,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0154401
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 60,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 6,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 7,
"interceptionWon": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.2817,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0133492
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"totalContest": 3,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 5.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.0132694
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 2,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0564,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0145281
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 49,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.5,
"possessionLostCtrl": 22,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0578828
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 68,
"accuratePass": 61,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 70,
"touches": 80,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.0199,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0433981
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"minutesPlayed": 64,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.2252,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0532506
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 59,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.286295
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 65,
"rating": 8.1,
"possessionLostCtrl": 23,
"expectedGoals": 0.8249,
"keyPass": 4,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.253507
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 45,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0498,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0147672
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 13,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.1875,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 3,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0193244
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"minutesPlayed": 26,
"touches": 41,
"rating": 7.3,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.190287
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 20,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 18,
"totalLongBalls": 25,
"accurateLongBalls": 11,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 6,
"punches": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"goalsPrevented": 0.3226
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 19,
"totalLongBalls": 10,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 9,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 7,
"totalTackle": 4,
"penaltyConceded": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.010137
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"interceptionWon": 4,
"minutesPlayed": 85,
"touches": 32,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0061,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 4,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 88,
"touches": 40,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 2,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 5,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 6.3,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0897483
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"minutesPlayed": 72,
"touches": 25,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.7884,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 10,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 85,
"touches": 37,
"rating": 6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0455,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 9,
"duelLost": 8,
"duelWon": 11,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 2,
"minutesPlayed": 73,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 10,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 4,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 17,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0162,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 2,
"fouls": 2,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 4,
"rating": 6.7,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0261743
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 15,
"totalLongBalls": 27,
"accurateLongBalls": 10,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.2,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00508061,
"goalsPrevented": -1.337
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.1,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0078475
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 9,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.382,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 47,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 8,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0111564
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Jos\u00e9 Luis Gay\u00e0",
"slug": "jose-luis-gaya",
"shortName": "J. L. Gay\u00e0",
"position": "D",
"jerseyNumber": "14",
"height": 172,
"userCount": 1789,
"id": 227922,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801360000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 14,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.216802
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"minutesPlayed": 89,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0212,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.360159
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 46,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 70,
"rating": 6.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0344,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0080871
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 8,
"wasFouled": 1,
"minutesPlayed": 82,
"touches": 66,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0155,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.186123
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"totalOffside": 2,
"minutesPlayed": 74,
"touches": 35,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.2454,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0102264
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 9,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"ownGoals": 1,
"wasFouled": 5,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 34,
"rating": 9,
"possessionLostCtrl": 9,
"expectedGoals": 0.8288,
"keyPass": 1,
"ratingVersions": {
"original": 9,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 16,
"touches": 11,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0589,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0107528
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"totalOffside": 1,
"minutesPlayed": 16,
"touches": 3,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.011675
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"totalContest": 3,
"wonContest": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 8,
"touches": 5,
"rating": 7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0210363
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Iker Cordoba",
"slug": "iker-cordoba",
"shortName": "I. C\u00f3rdoba",
"position": "D",
"jerseyNumber": "38",
"height": 190,
"userCount": 32,
"id": 1563953,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1131667200,
"proposedMarketValueRaw": {
"value": 49000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Warren Madrigal",
"firstName": "Warren Madrigal",
"slug": "madrigal-warren",
"shortName": "W. Madrigal",
"position": "F",
"jerseyNumber": "42",
"height": 185,
"userCount": 663,
"id": 1102593,
"country": {
"alpha2": "CR",
"alpha3": "CRI",
"name": "Costa Rica",
"slug": "costa-rica"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090627200,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.4,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0056616,
"goalsPrevented": -1.5198
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 48,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 6.2,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0339913
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 48,
"totalLongBalls": 16,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.5,
"possessionLostCtrl": 15,
"expectedGoals": 0.1078,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0419053
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 44,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 7,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.2,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0328855
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.1,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00929568
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 59,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 75,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.326487
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Carlos Guirao",
"firstName": "Carlos",
"lastName": "Guirao",
"slug": "carlos-guirao",
"shortName": "C. Guirao",
"position": "M",
"jerseyNumber": "16",
"userCount": 47,
"id": 1632259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051401600,
"proposedMarketValueRaw": {
"value": 91000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 57,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00695644
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 58,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.122603
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 2,
"totalTackle": 1,
"minutesPlayed": 57,
"touches": 17,
"rating": 6.2,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 6,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"outfielderBlock": 2,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 68,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 20,
"expectedGoals": 0.359,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0138147
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 81,
"touches": 24,
"rating": 6.1,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0144585
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 33,
"touches": 45,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.222334
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 17,
"rating": 7.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.0667,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0190575
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 5,
"dispossessed": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 32,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.4396,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0250796
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"minutesPlayed": 22,
"touches": 6,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0051541
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"totalOffside": 2,
"minutesPlayed": 9,
"touches": 9,
"rating": 6.9,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 10,
"totalLongBalls": 22,
"accurateLongBalls": 9,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.6,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.774
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 89,
"touches": 60,
"rating": 8.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.2822,
"keyPass": 2,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.105206
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0136712
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 28,
"totalLongBalls": 12,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.103076
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 29,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelWon": 4,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.5,
"possessionLostCtrl": 16,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.502255
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 6,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 55,
"touches": 37,
"rating": 6.5,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00650176
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0074203
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 47,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.7,
"possessionLostCtrl": 21,
"expectedGoals": 0.0655,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.132735
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 27,
"rating": 7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.149001
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 8,
"aerialWon": 5,
"duelLost": 10,
"duelWon": 6,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 65,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0797,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0104758
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 9,
"aerialWon": 5,
"duelLost": 16,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0912,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0204787
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 35,
"touches": 27,
"rating": 6.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalOffside": 1,
"minutesPlayed": 25,
"touches": 10,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.0691,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00541218
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"minutesPlayed": 9,
"touches": 1,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 16,
"totalLongBalls": 28,
"accurateLongBalls": 11,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 3,
"wasFouled": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 48,
"rating": 7,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": -1.2067
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0451,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0533783
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 13,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00670159
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 23,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 20,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 5,
"shotOffTarget": 1,
"totalClearance": 11,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.0536,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 11,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 9,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.3,
"possessionLostCtrl": 23,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0624016
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 25,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.048,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.770139
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 6,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 66,
"touches": 30,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.5123,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 11,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 5,
"wasFouled": 5,
"fouls": 6,
"minutesPlayed": 90,
"touches": 59,
"rating": 7,
"possessionLostCtrl": 15,
"expectedGoals": 0.0352,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0650809
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"minutesPlayed": 66,
"touches": 26,
"rating": 6.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 8,
"aerialWon": 4,
"duelLost": 10,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"minutesPlayed": 85,
"touches": 18,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.4377,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00818512
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 24,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00542097
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"outfielderBlock": 1,
"errorLeadToAGoal": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 24,
"touches": 10,
"rating": 5.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 5.7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "C\u00e9sar de la Hoz",
"firstName": "",
"lastName": "",
"slug": "cesar-de-la-hoz",
"shortName": "C. de la Hoz",
"position": "M",
"jerseyNumber": "16",
"height": 179,
"userCount": 49,
"id": 233328,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701913600,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 33,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"goodHighClaim": 4,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.461
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 41,
"totalLongBalls": 17,
"accurateLongBalls": 14,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0260737
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 55,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 45,
"totalLongBalls": 12,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.6,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0106869
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 82,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0165,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.15876
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 2,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 61,
"touches": 24,
"rating": 7.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0354,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.467901
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 71,
"touches": 43,
"rating": 7.1,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00519992
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.4,
"possessionLostCtrl": 20,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.1244
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"blockedScoringAttempt": 3,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.5,
"possessionLostCtrl": 17,
"expectedGoals": 0.1385,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.085765
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 4,
"minutesPlayed": 61,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.1245,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0252173
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 21,
"accuratePass": 12,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 3,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"hitWoodwork": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.9,
"possessionLostCtrl": 17,
"expectedGoals": 1.7444,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0369945
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 29,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0208116
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 29,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.117531
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Edu Exp\u00f3sito",
"slug": "edu-exposito",
"shortName": "E. Exp\u00f3sito",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 203,
"id": 877262,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838857600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648, \u0625\u064a\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0625\u0643\u0633\u0628\u0648\u0632\u064a\u062a\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Espanyol"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 8,
"totalLongBalls": 25,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": 0.3071
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0124354
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 29,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 52,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00535749
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 35,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 5,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 20,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0761069
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 59,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 85,
"touches": 67,
"rating": 7.4,
"possessionLostCtrl": 4,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0510198
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 38,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 68,
"touches": 53,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0105329
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 35,
"rating": 6.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0462,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.493339
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 39,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.0363,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0300235
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"hitWoodwork": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 44,
"rating": 7.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.7942,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.142069
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 8,
"aerialWon": 2,
"duelLost": 13,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.8598,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0403639
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 33,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 22,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0457,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0732493
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 22,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.141,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0356511
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Iker Cordoba",
"slug": "iker-cordoba",
"shortName": "I. C\u00f3rdoba",
"position": "D",
"jerseyNumber": "38",
"height": 190,
"userCount": 32,
"id": 1563953,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1131667200,
"proposedMarketValueRaw": {
"value": 49000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 5,
"rating": 6.7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0291914
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"goalAssist": 0,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 13,
"rating": 7.2,
"possessionLostCtrl": 1,
"expectedGoals": 0.0629,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Rub\u00e9n Iranzo",
"slug": "ruben-iranzo",
"shortName": "R. Iranzo",
"position": "D",
"jerseyNumber": "31",
"height": 182,
"userCount": 48,
"id": 1167704,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047600000,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 16,
"totalLongBalls": 21,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 2,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": -0.2857
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 19,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 8,
"challengeLost": 5,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 4,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 61,
"touches": 44,
"rating": 6.4,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.15213
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 3,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.053,
"ratingVersions": {
"original": 7.8,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 7,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 7.7,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0137511
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 11,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 3,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 36,
"rating": 6.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 2,
"totalClearance": 4,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00934841
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0894,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0629579
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 7,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.2382,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0309313
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 61,
"touches": 31,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0429,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0382569
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 20,
"rating": 7.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.6095,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.122211
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 62,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.9067,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0419875
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 29,
"touches": 17,
"rating": 7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0226352
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 29,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 29,
"touches": 17,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0567,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0165378
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 28,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0283,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 59,
"totalLongBalls": 12,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 3,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"punches": 1,
"totalKeeperSweeper": 4,
"accurateKeeperSweeper": 4,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.3438
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 20,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 57,
"rating": 6.4,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.014806
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 85,
"accuratePass": 78,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 3,
"duelWon": 8,
"shotOffTarget": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 94,
"rating": 7.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.2313,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.00725152
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 109,
"accuratePass": 93,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 119,
"rating": 6.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.0481,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.170171
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 50,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 4,
"duelWon": 10,
"challengeLost": 1,
"totalContest": 8,
"wonContest": 5,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 93,
"rating": 7,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0210857
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 60,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.0387,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0308308
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.026,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.032169
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 69,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.1761,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0143224
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 46,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 4,
"minutesPlayed": 89,
"touches": 76,
"rating": 7.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.0381,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.605657
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7,
"possessionLostCtrl": 22,
"expectedGoals": 0.0203,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.275713
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0760061
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0652,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0160279
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 21,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00972912
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 11,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00885532
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 2
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Andr\u00e9s Cuenca",
"firstName": "Andr\u00e9s Cuenca",
"slug": "andres-cuenca",
"shortName": "A. Cuenca",
"position": "D",
"jerseyNumber": "27",
"height": 181,
"userCount": 4193,
"id": 1503832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1181520000,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 20,
"accuratePass": 11,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"saves": 1,
"minutesPlayed": 90,
"touches": 22,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.6441
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.8,
"possessionLostCtrl": 23,
"expectedGoals": 0.0169,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0271917
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 51,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"totalClearance": 2,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00799998
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 45,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.0445,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0180558
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 18,
"expectedGoals": 0.0055,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.157093
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 39,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0333818
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 64,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0232,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0403262
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 38,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.3,
"possessionLostCtrl": 21,
"expectedGoals": 0.0239,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0335446
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.1293,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0202309
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 12,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 4,
"wasFouled": 1,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 36,
"rating": 6.2,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0280405
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.3674,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 26,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 26,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00686817
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 10,
"touches": 1,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 25,
"totalLongBalls": 21,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.6,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0202577
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 76,
"accuratePass": 64,
"totalLongBalls": 13,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 1,
"totalClearance": 12,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 99,
"rating": 7.5,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0218701
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 73,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 7.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00588919
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 51,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 81,
"rating": 6.9,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0157517
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 9,
"duelWon": 11,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 5,
"fouls": 4,
"minutesPlayed": 73,
"touches": 45,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.1356,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 47,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00879627
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 89,
"touches": 51,
"rating": 7.3,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.237324
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"minutesPlayed": 73,
"touches": 21,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.03,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.03221
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 73,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ferr\u00e1n Ruiz",
"firstName": "",
"lastName": "",
"slug": "ferran-ruiz",
"shortName": "F. Ruiz",
"position": "D",
"jerseyNumber": "45",
"height": 172,
"userCount": 50,
"id": 1119702,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051315200
},
"teamId": 368693,
"shirtNumber": 45,
"jerseyNumber": "45",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 17,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"fouls": 1,
"minutesPlayed": 17,
"touches": 16,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.0243,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 17,
"touches": 11,
"rating": 6.9,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0050081
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Min-su Kim",
"slug": "min-su-kim",
"shortName": "M. Kim",
"position": "F",
"jerseyNumber": "29",
"height": 177,
"userCount": 380,
"id": 1892528,
"country": {
"alpha2": "KR",
"alpha3": "KOR",
"name": "South Korea",
"slug": "south-korea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1137628800
},
"teamId": 368693,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 6,
"possessionLostCtrl": 2
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Lucas Garc\u00eda",
"firstName": "Lucas Garc\u00eda",
"slug": "lucas-garcia",
"shortName": "L. Garc\u00eda",
"position": "G",
"jerseyNumber": "42",
"userCount": 22,
"id": 1971651,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1087516800
},
"teamId": 368693,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Dawda Camara",
"firstName": "Dawda Camara",
"lastName": "",
"slug": "dawda-camara",
"shortName": "D. Camara",
"position": "F",
"jerseyNumber": "46",
"height": 175,
"userCount": 80,
"id": 1151851,
"country": {
"alpha2": "MR",
"alpha3": "MRT",
"name": "Mauritania",
"slug": "mauritania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036368000,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0648\u062f\u0627 \u0643\u0645\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0645\u0627\u0631\u0627"
}
}
},
"teamId": 368693,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Jastin Garc\u00eda",
"slug": "jastin-garcia",
"shortName": "J. Garc\u00eda",
"position": "F",
"jerseyNumber": "31",
"height": 180,
"userCount": 140,
"id": 1518119,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1074211200
},
"teamId": 368693,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Papa Dame Ba",
"slug": "papa-dame-ba",
"shortName": "P. D. Ba",
"position": "F",
"jerseyNumber": "44",
"height": 175,
"userCount": 112,
"id": 1897196,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1094947200
},
"teamId": 24264,
"shirtNumber": 44,
"jerseyNumber": "44",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 34,
"totalLongBalls": 24,
"accurateLongBalls": 11,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00621569,
"goalsPrevented": -0.1456
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0841618
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 22,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 8,
"outfielderBlock": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0334,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 27,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 12,
"totalLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.1755,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00732075
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 26,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.3063,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.12188
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 89,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 76,
"touches": 44,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0282,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.129213
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 61,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 6,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 10,
"rating": 6.9,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.25094
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 28,
"touches": 11,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0665,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"challengeLost": 2,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 6,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 8,
"touches": 3,
"rating": 6.1,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 1,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.1402
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 61,
"accuratePass": 53,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 3,
"aerialLost": 3,
"duelLost": 5,
"dispossessed": 2,
"bigChanceCreated": 1,
"totalClearance": 2,
"minutesPlayed": 90,
"touches": 85,
"rating": 7.3,
"possessionLostCtrl": 14,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.494962
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 54,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0131,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0116033
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 77,
"totalLongBalls": 13,
"accurateLongBalls": 10,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0189519
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 41,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0467,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0167191
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 37,
"rating": 6.6,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0271527
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 33,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0189,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.17523
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 7,
"wonContest": 3,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 80,
"touches": 44,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.0611,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0158525
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"minutesPlayed": 45,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0315,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00720673
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 8,
"wonContest": 4,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.8,
"possessionLostCtrl": 26,
"expectedGoals": 0.3991,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.141087
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"totalClearance": 2,
"totalOffside": 1,
"minutesPlayed": 64,
"touches": 28,
"rating": 7.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0737,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.171612
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 49,
"accuratePass": 46,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 56,
"rating": 7.6,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.209001
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1896,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 47,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 4,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0296766
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 26,
"touches": 11,
"rating": 7,
"possessionLostCtrl": 1,
"expectedGoals": 0.3743,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 10,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.0478
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 26,
"totalLongBalls": 6,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"errorLeadToAGoal": 1,
"wasFouled": 2,
"minutesPlayed": 75,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0510176
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 72,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.0117,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0203997
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 85,
"accuratePass": 78,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.1,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.100549
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 71,
"rating": 7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0212403
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 25,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 75,
"touches": 43,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0499,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0163797
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 58,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 83,
"touches": 74,
"rating": 7.5,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.123155
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 71,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0272,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.122777
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 33,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 4,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 69,
"touches": 51,
"rating": 7.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0376,
"keyPass": 4,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.246307
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 69,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0515,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 10,
"duelLost": 6,
"duelWon": 14,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 4,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.2355,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0616017
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"minutesPlayed": 21,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0602,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"dispossessed": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"fouls": 1,
"minutesPlayed": 21,
"touches": 10,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.133,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 15,
"touches": 14,
"rating": 7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.014036
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"minutesPlayed": 15,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0103829
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 12,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00824984
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"minutesPlayed": 90,
"touches": 27,
"rating": 7.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"goalsPrevented": 0.2178
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 46,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 82,
"rating": 6.9,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0119291
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00515928
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 63,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 51,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 11,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00648927
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 30,
"goalAssist": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 62,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.214257
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 40,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0612762
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 65,
"accuratePass": 59,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.6,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.176117
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 30,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 8,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 86,
"touches": 52,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.1504,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0434899
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 3,
"minutesPlayed": 62,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0174489
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 62,
"touches": 34,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.4043,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.022122
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"minutesPlayed": 28,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0326,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 28,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 1,
"totalOffside": 1,
"minutesPlayed": 28,
"touches": 16,
"rating": 6.2,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 2,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 21,
"rating": 7.1,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 9,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.0608,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 29,
"rating": 6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6,
"alternative": null
},
"goalsPrevented": -0.7751
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 54,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 87,
"rating": 6.8,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0584175
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 39,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 4,
"duelWon": 4,
"totalClearance": 3,
"minutesPlayed": 55,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0205557
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 63,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 4,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.0293,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00604413
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 42,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.1,
"possessionLostCtrl": 16,
"expectedGoals": 0.0348,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0134553
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 41,
"accuratePass": 35,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 5,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 75,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0655,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.225189
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 87,
"accuratePass": 79,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 104,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0988,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0429328
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"bigChanceCreated": 1,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 55,
"touches": 50,
"rating": 7.3,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.17104
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 27,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 5,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalTackle": 1,
"minutesPlayed": 86,
"touches": 55,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.26,
"keyPass": 5,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.186397
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"interceptionWon": 2,
"minutesPlayed": 86,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.11,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0548563
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 9,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 8,
"possessionLostCtrl": 7,
"expectedGoals": 0.6789,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.00841457
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 35,
"touches": 27,
"rating": 7.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.272,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 35,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0552,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.155442
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 10,
"rating": 6.7,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"blockedScoringAttempt": 1,
"minutesPlayed": 12,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0101,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.014615
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"minutesPlayed": 12,
"touches": 2,
"rating": 6.6,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.290601
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Busto",
"firstName": "Pablo Busto",
"lastName": "",
"slug": "pablo-busto",
"shortName": "P. Busto",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 29,
"id": 1464647,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126742400,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 12,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 2,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 2,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": -0.0734
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 39,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0902,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0281449
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 53,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 7,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 58,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 3,
"totalClearance": 9,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.9,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00548717
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 3,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 58,
"touches": 41,
"rating": 6.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 4,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0072906
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 26,
"rating": 6.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 11,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 5,
"wonContest": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.6,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.530662
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 30,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 79,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.2189,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.023535
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 20,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 33,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00824722
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 9,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 5,
"wasFouled": 4,
"minutesPlayed": 45,
"touches": 34,
"rating": 7.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0119168
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 13,
"rating": 7.1,
"possessionLostCtrl": 4,
"expectedGoals": 0.9419,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"minutesPlayed": 11,
"touches": 12,
"rating": 7.2,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.588905
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 17,
"totalLongBalls": 30,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 2,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 26,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": 0.0782
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00951409
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 53,
"accuratePass": 39,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalClearance": 9,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.1,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0271258
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 41,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 47,
"rating": 6.7,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0129045
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 76,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00853884
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 9,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 3,
"penaltyWon": 1,
"minutesPlayed": 89,
"touches": 49,
"rating": 7.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0137143
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 76,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.0205,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.15235
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 30,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0208,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0136132
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 6,
"duelLost": 13,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 6,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0739,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 5,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 3,
"goals": 1,
"outfielderBlock": 1,
"minutesPlayed": 90,
"touches": 20,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.8982,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 14,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 14,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0352,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 14,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Naim Garc\u00eda",
"firstName": "Naim Garc\u00eda",
"lastName": "",
"slug": "naim-garcia",
"shortName": "N. Garc\u00eda",
"position": "M",
"jerseyNumber": "27",
"height": 179,
"userCount": 227,
"id": 1134395,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023753600,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 27,
"totalLongBalls": 20,
"accurateLongBalls": 8,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.1,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.2407
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 38,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"totalClearance": 1,
"interceptionWon": 6,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 88,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0502417
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 64,
"accuratePass": 51,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.5,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 43,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 3,
"minutesPlayed": 90,
"touches": 75,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0466,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00857149
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.4,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 40,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 5,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 88,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0183,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0321895
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 6,
"duelWon": 10,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"interceptionWon": 3,
"totalTackle": 4,
"penaltyConceded": 1,
"fouls": 2,
"minutesPlayed": 81,
"touches": 57,
"rating": 6.4,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00644486
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 54,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 4,
"dispossessed": 4,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 15,
"expectedGoals": 0.1447,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.153305
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.2298,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.20076
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 12,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 27,
"expectedGoals": 0.079,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 73,
"touches": 30,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0609,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0835189
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 17,
"touches": 17,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Mat\u00edas \u00c1rbol",
"firstName": "",
"lastName": "",
"slug": "matias-arbol",
"shortName": "M. \u00c1rbol",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 26,
"id": 1192489,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031788800,
"proposedMarketValueRaw": {
"value": 96000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Ram\u00f3n Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "ramon-martinez",
"shortName": "R. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 33,
"id": 1090681,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035244800,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isra Dominguez",
"firstName": "",
"lastName": "",
"slug": "dominguez-isra",
"shortName": "I. Dom\u00ednguez",
"position": "M",
"jerseyNumber": "41",
"height": 175,
"userCount": 18,
"id": 1487790,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 220000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.5602
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 24,
"touches": 26,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 77,
"accuratePass": 66,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.8,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00880093
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 62,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 5,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0114066
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.0939,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0470123
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 26,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.085,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00647183
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 6,
"fouls": 1,
"minutesPlayed": 73,
"touches": 46,
"rating": 7.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.1838,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.171069
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 61,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.7884,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0423686
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 22,
"expectedGoals": 0.0613,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0895982
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 73,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0584526
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0347,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0253839
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 45,
"accuratePass": 41,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 66,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0130167
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.8,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0483945
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 17,
"touches": 14,
"rating": 7.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.2168,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 17,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0519,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0086838
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.9,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0586849
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 11,
"totalLongBalls": 22,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 1,
"goodHighClaim": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.1,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"goalsPrevented": -1.1922
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 13,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.1,
"possessionLostCtrl": 19,
"expectedGoals": 0.0154,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 27,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 4,
"outfielderBlock": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0152036
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0751,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 6,
"possessionLostCtrl": 14,
"expectedGoals": 0.0424,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0230476
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 26,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 68,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0100784
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0159,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0525075
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 77,
"touches": 27,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0279,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0506664
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 68,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.1726,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 52,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0224,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 10,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 76,
"touches": 27,
"rating": 7.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.1126,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0317896
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 38,
"touches": 17,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0124,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0936579
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0402805
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 22,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00808885
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 14,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 13,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 1,
"bigChanceCreated": 1,
"goodHighClaim": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 45,
"touches": 37,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0177114
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 1,
"minutesPlayed": 30,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 96,
"accuratePass": 90,
"totalLongBalls": 14,
"accurateLongBalls": 10,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 99,
"rating": 7.3,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0255489
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 56,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.0673,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0170518
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 51,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.1416,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0219914
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 46,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0568,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0151812
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 44,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 64,
"rating": 8.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.4598,
"keyPass": 1,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.0190618
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"onTargetScoringAttempt": 1,
"minutesPlayed": 20,
"touches": 20,
"rating": 7.1,
"possessionLostCtrl": 4,
"expectedGoals": 0.0151,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0387606
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 35,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 9,
"wonContest": 6,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.282,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.127902
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 12,
"dispossessed": 1,
"totalContest": 12,
"wonContest": 7,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 4,
"blockedScoringAttempt": 1,
"goals": 3,
"totalTackle": 1,
"wasFouled": 4,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 71,
"rating": 10,
"possessionLostCtrl": 19,
"expectedGoals": 2.0233,
"keyPass": 2,
"ratingVersions": {
"original": 10,
"alternative": null
},
"expectedAssists": 0.242853
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 50,
"accuratePass": 43,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 9,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 70,
"touches": 73,
"rating": 7.5,
"possessionLostCtrl": 16,
"expectedGoals": 0.0234,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.284828
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ra\u00fal Asencio",
"slug": "raul-asencio",
"shortName": "R. Asencio",
"position": "D",
"jerseyNumber": "35",
"height": 184,
"userCount": 8387,
"id": 1156645,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1045094400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 2829,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 46,
"accuratePass": 43,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 60,
"touches": 52,
"rating": 7.4,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.261545
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 37,
"accuratePass": 33,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0219977
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00606944
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 16,
"totalLongBalls": 21,
"accurateLongBalls": 8,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.5187
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"lastManTackle": 1,
"totalTackle": 5,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0126524
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 5.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 5.6,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.0099,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00726619
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 4,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 81,
"touches": 24,
"rating": 6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0118727
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 4,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0051637
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 71,
"touches": 34,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00564292
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 3,
"dispossessed": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 59,
"touches": 14,
"rating": 6.3,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 5,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 8,
"duelWon": 1,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"minutesPlayed": 82,
"touches": 23,
"rating": 5.9,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.0367434
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 31,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 19,
"touches": 16,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"minutesPlayed": 19,
"touches": 16,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0103678
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00611777
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0397,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0226724
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6,
"alternative": null
},
"goalsPrevented": -1.9809
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 49,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 7,
"wonContest": 5,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 101,
"rating": 7,
"possessionLostCtrl": 23,
"expectedGoals": 0.1151,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.043973
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 44,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 7,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 2,
"ownGoals": 1,
"wasFouled": 2,
"minutesPlayed": 71,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0298,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00917301
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 70,
"totalLongBalls": 14,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 9,
"challengeLost": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 3,
"hitWoodwork": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 96,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.1115,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0799403
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 77,
"touches": 65,
"rating": 6.4,
"possessionLostCtrl": 15,
"expectedGoals": 0.4127,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0921813
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7,
"possessionLostCtrl": 22,
"expectedGoals": 0.1041,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.200872
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.2579,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0257716
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 4,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 71,
"touches": 52,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.2128,
"keyPass": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.300637
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 32,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.28,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.121095
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"wasFouled": 1,
"minutesPlayed": 77,
"touches": 36,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.1163,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.249733
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 71,
"touches": 38,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.5429,
"keyPass": 3,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.30554
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 19,
"touches": 33,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0627039
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 19,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.2306,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0378805
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0134582
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"minutesPlayed": 13,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.016,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0393715
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 13,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0434,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00984861
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pelayo Fern\u00e1ndez",
"firstName": "",
"lastName": "",
"slug": "pelayo-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "27",
"height": 193,
"userCount": 220,
"id": 1139724,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051574400,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Joni Montiel",
"slug": "joni-montiel",
"shortName": "J. Montiel",
"position": "M",
"jerseyNumber": "25",
"height": 173,
"userCount": 55,
"id": 827491,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 904780800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2818,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 20,
"totalLongBalls": 25,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 5,
"saves": 6,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.6,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.1445
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 4,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0063435
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 14,
"totalLongBalls": 8,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 9,
"outfielderBlock": 3,
"errorLeadToAShot": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 16,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalClearance": 7,
"outfielderBlock": 2,
"ownGoals": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.2515,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00578308
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 10,
"challengeLost": 2,
"totalClearance": 8,
"outfielderBlock": 3,
"interceptionWon": 2,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0468,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.054166
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 52,
"rating": 7.5,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0592618
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"errorLeadToAShot": 2,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 79,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0296,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00849999
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 64,
"touches": 31,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.0515,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.31319
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 12,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 79,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 17,
"expectedGoals": 0.1519,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 64,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0318,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00873327
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 26,
"touches": 15,
"rating": 7.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0402,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0913599
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 14,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 21,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.0177,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0695573
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0805913
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 1,
"expectedGoals": 0.2839,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 1,
"touches": 3
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 14,
"totalLongBalls": 17,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.0091000000000001
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelWon": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 74,
"touches": 51,
"rating": 7.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00948104
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 17,
"rating": 5.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 5.3,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0159006
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 5,
"clearanceOffLine": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 62,
"rating": 8.2,
"possessionLostCtrl": 13,
"keyPass": 3,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.0832913
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 74,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1415,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.717432
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 32,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 11,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 5,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.2,
"possessionLostCtrl": 20,
"expectedGoals": 0.1109,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0111436
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 42,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.0587,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0276229
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 3,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 1,
"aerialWon": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 63,
"touches": 40,
"rating": 7.1,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.132844
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 9,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 74,
"touches": 24,
"rating": 7.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.1477,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.41688
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"duelLost": 11,
"duelWon": 10,
"dispossessed": 3,
"totalContest": 7,
"wonContest": 3,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 3,
"wasFouled": 4,
"minutesPlayed": 83,
"touches": 48,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.5997,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0155207
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 2,
"minutesPlayed": 27,
"touches": 15,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.3136,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Foyth",
"firstName": "",
"lastName": "",
"slug": "juan-foyth",
"shortName": "J. Foyth",
"position": "D",
"jerseyNumber": "8",
"height": 187,
"userCount": 3930,
"id": 873189,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884563200,
"proposedMarketValueRaw": {
"value": 12900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0648\u064a\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 16,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Gerard Moreno",
"firstName": "",
"lastName": "",
"slug": "gerard-moreno",
"shortName": "G. Moreno",
"position": "F",
"jerseyNumber": "7",
"height": 180,
"userCount": 4216,
"id": 146866,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a\u0646\u0648, \u062c\u064a\u0631\u0627\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0631\u064a\u0646\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00615403
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 2,
"fouls": 1,
"minutesPlayed": 16,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0823944
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Thiago Ojeda",
"firstName": "Thiago Ojeda",
"lastName": "",
"slug": "thiago-ojeda",
"shortName": "T. Ojeda",
"position": "M",
"jerseyNumber": "38",
"height": 188,
"userCount": 94,
"id": 1116580,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042329600,
"proposedMarketValueRaw": {
"value": 245000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 2,
"expectedGoals": 0.0103,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0093953
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Rub\u00e9n G\u00f3mez",
"firstName": "Rub\u00e9n G\u00f3mez Peris",
"lastName": "",
"slug": "ruben-gomez",
"shortName": "R. G\u00f3mez",
"position": "G",
"jerseyNumber": "55",
"height": 185,
"userCount": 23,
"id": 1407702,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1011830400,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 55,
"jerseyNumber": "55",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Arnau Sol\u00e0",
"firstName": "",
"lastName": "",
"slug": "arnau-sola",
"shortName": "A. Sol\u00e0",
"position": "D",
"jerseyNumber": "27",
"height": 179,
"userCount": 80,
"id": 997025,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049414400,
"proposedMarketValueRaw": {
"value": 410000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627 \u060c \u0623\u0631\u0646\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0623\u0631\u0646\u0627\u0648"
}
}
},
"teamId": 24338,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Etta Eyong",
"firstName": "Etta Eyong",
"lastName": "",
"slug": "etta-eyong",
"shortName": "E. Eyong",
"position": "F",
"jerseyNumber": "36",
"height": 181,
"userCount": 188,
"id": 1393673,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1072915200,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 1.2908
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 22,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"minutesPlayed": 57,
"touches": 44,
"rating": 6.6,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0316943
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"shotOffTarget": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0833,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.199659
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 7,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0241,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Alfonso Espino",
"slug": "alfonso-espino",
"shortName": "A. Espino",
"position": "D",
"jerseyNumber": "22",
"height": 172,
"userCount": 573,
"id": 542634,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694569600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0633\u0628\u064a\u0646\u0648 \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u060c \u0623\u0644\u0641\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 37,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 84,
"touches": 85,
"rating": 7.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.1681,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0309741
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 45,
"accuratePass": 36,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 65,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.0905,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0310612
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"blockedScoringAttempt": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 57,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0164,
"keyPass": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.161032
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.5371,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.116906
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 29,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 6,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 63,
"touches": 45,
"rating": 6.2,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0383833
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.4,
"possessionLostCtrl": 18,
"expectedGoals": 0.3293,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.122684
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 63,
"touches": 33,
"rating": 7.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.1978,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.206229
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 33,
"touches": 31,
"rating": 6.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0459,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0181057
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 33,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0387706
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 41,
"rating": 7,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.266841
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 27,
"touches": 13,
"rating": 7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0579373
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Joni Montiel",
"slug": "joni-montiel",
"shortName": "J. Montiel",
"position": "M",
"jerseyNumber": "25",
"height": 173,
"userCount": 55,
"id": 827491,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 904780800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2818,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 32,
"rating": 7.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.3055
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 56,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.7,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 89,
"accuratePass": 77,
"totalLongBalls": 13,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 7,
"duelLost": 5,
"duelWon": 12,
"totalContest": 1,
"totalClearance": 8,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 109,
"rating": 7.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0193855
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.8,
"possessionLostCtrl": 14,
"expectedGoals": 0.0457,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.228638
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 68,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 3,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 86,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.059899
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 2,
"minutesPlayed": 75,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0917,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00981475
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 4,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 67,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 48,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 8.3,
"possessionLostCtrl": 21,
"expectedGoals": 0.0876,
"keyPass": 4,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.811801
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 67,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 13,
"expectedGoals": 1.3179,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 3,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.118181
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 33,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0285,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00589571
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"duelLost": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 20,
"rating": 6.3,
"possessionLostCtrl": 3,
"expectedGoals": 0.253,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0323182
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 11,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.1227,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.018613
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 15,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00562815
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 1,
"touches": 4,
"possessionLostCtrl": 3
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fer L\u00f3pez",
"slug": "fer-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "28",
"height": 186,
"userCount": 80,
"id": 1526628,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085356800,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 24336,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 28,
"totalLongBalls": 24,
"accurateLongBalls": 14,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 42,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.6013
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.8,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0581486
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 31,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00715948
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 48,
"totalLongBalls": 15,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.1,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 27,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.9,
"possessionLostCtrl": 17,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.170263
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 31,
"touches": 13,
"rating": 6.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 3,
"totalContest": 6,
"wonContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.081,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0568473
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 25,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0906,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.11009
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0166897
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 2,
"totalContest": 2,
"totalTackle": 1,
"wasFouled": 6,
"minutesPlayed": 62,
"touches": 33,
"rating": 6.8,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00671998
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 6,
"duelLost": 8,
"duelWon": 10,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 71,
"touches": 31,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.2985,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0192864
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 34,
"touches": 36,
"rating": 6.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 12,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 10,
"duelLost": 12,
"duelWon": 12,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 59,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.0852,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0339284
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 28,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 6,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 19,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 13,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.2702
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 42,
"accuratePass": 36,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 79,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.111006
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 67,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0631,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0110844
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 59,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1654,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00619113
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 46,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 9,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.8,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00857324
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 69,
"touches": 54,
"rating": 7.2,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.222041
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 35,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 7,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 79,
"touches": 55,
"rating": 7.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.1299,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00879086
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 9,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 4,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 8.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.5755,
"keyPass": 4,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 1.21178
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 3,
"shotOffTarget": 3,
"hitWoodwork": 1,
"wasFouled": 2,
"minutesPlayed": 69,
"touches": 32,
"rating": 6,
"possessionLostCtrl": 8,
"expectedGoals": 1.5326,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00614245
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 13,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 5,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0392,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.257492
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 65,
"touches": 18,
"rating": 7,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.287123
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 25,
"touches": 20,
"rating": 7.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.3904,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0240925
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 1,
"bigChanceMissed": 2,
"onTargetScoringAttempt": 2,
"minutesPlayed": 21,
"touches": 27,
"rating": 6.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.7852,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0100791
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 2,
"expectedGoals": 0.3325,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"interceptionWon": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 37,
"totalLongBalls": 18,
"accurateLongBalls": 8,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 7,
"saves": 7,
"minutesPlayed": 90,
"touches": 63,
"rating": 8.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"goalsPrevented": 2.3779
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 70,
"accuratePass": 58,
"totalLongBalls": 13,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 4,
"interceptionWon": 2,
"minutesPlayed": 89,
"touches": 81,
"rating": 6.4,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00682413
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 78,
"totalLongBalls": 12,
"accurateLongBalls": 10,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 7,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 99,
"rating": 7.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00672589
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 6,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 38,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.1504,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0882068
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 47,
"rating": 7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 9,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0228682
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7,
"possessionLostCtrl": 21,
"expectedGoals": 0.0321,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00853912
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0213724
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 25,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0188,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00901559
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 41,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00636582
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.14,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00972357
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 21,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.1105,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0329264
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 18,
"touches": 2,
"rating": 6.3,
"possessionLostCtrl": 1,
"expectedGoals": 0.3909,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 1
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 26,
"totalLongBalls": 28,
"accurateLongBalls": 9,
"goalAssist": 0,
"saves": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.3,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -0.8507
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 46,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 4,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.0211,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0354253
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 41,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 73,
"touches": 53,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 55,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.6,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 38,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.9,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0875756
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 30,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.6,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0181855
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 57,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 80,
"touches": 69,
"rating": 6.9,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0285103
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 7,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.3,
"possessionLostCtrl": 21,
"expectedGoals": 0.1657,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0430815
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 73,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00523675
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 25,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 80,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0995,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0104641
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 43,
"accuratePass": 33,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 65,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 17,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.039527
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 17,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0239,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isra Dominguez",
"firstName": "",
"lastName": "",
"slug": "dominguez-isra",
"shortName": "I. Dom\u00ednguez",
"position": "M",
"jerseyNumber": "41",
"height": 175,
"userCount": 18,
"id": 1487790,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 220000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 17,
"touches": 3,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 10,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.7791,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Mat\u00edas \u00c1rbol",
"firstName": "",
"lastName": "",
"slug": "matias-arbol",
"shortName": "M. \u00c1rbol",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 26,
"id": 1192489,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031788800,
"proposedMarketValueRaw": {
"value": 96000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Ram\u00f3n Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "ramon-martinez",
"shortName": "R. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 33,
"id": 1090681,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035244800,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 21,
"totalLongBalls": 14,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 9,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 5,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.4,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00603879
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 48,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 53,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 11,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0721,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0071798
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 41,
"rating": 6.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 4,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0962,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0121902
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 80,
"touches": 49,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.2318,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.11418
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 80,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0402,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0231,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 2,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 89,
"touches": 56,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0077,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.408623
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 80,
"touches": 19,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.8996,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 10,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 10,
"touches": 6,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"outfielderBlock": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Urko Gonz\u00e1lez",
"slug": "urko-gonzalez",
"shortName": "U. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 131,
"id": 1064009,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985046400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 32,
"rating": 7.1,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": -0.2691
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 47,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 78,
"touches": 68,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0506,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.555475
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 117,
"accuratePass": 115,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"minutesPlayed": 90,
"touches": 122,
"rating": 7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0197214
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 130,
"accuratePass": 123,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 7,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 145,
"rating": 7.3,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0518198
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 44,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0431407
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 56,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 4,
"bigChanceCreated": 1,
"outfielderBlock": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 56,
"touches": 67,
"rating": 7.9,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.294289
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 98,
"accuratePass": 89,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 85,
"touches": 109,
"rating": 7.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.085439
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 35,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"duelLost": 10,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 10,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.4,
"possessionLostCtrl": 22,
"expectedGoals": 0.1254,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.371951
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"goals": 2,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 56,
"touches": 32,
"rating": 8.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.9428,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.0615487
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 85,
"touches": 69,
"rating": 7.9,
"possessionLostCtrl": 22,
"expectedGoals": 0.5476,
"keyPass": 3,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.160777
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 2,
"dispossessed": 4,
"onTargetScoringAttempt": 2,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 41,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.1317,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0552758
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 34,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0183,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.333312
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 51,
"accuratePass": 48,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 34,
"touches": 53,
"rating": 6.7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0385106
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0258519
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"blockedScoringAttempt": 1,
"totalOffside": 1,
"minutesPlayed": 9,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 2,
"expectedGoals": 0.0177,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0189134
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 8,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 3,
"saves": 6,
"punches": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.2308
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 6,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 5,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 40,
"touches": 11,
"rating": 6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 17,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 4,
"totalClearance": 5,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.5,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.107891
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"lastManTackle": 1,
"totalTackle": 6,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 31,
"rating": 7.2,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.152334
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 62,
"touches": 26,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0107,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 14,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"errorLeadToAGoal": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.0683,
"keyPass": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.117288
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 62,
"touches": 34,
"rating": 6.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.1432,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00986358
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0717,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0111848
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 21,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.5922,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"minutesPlayed": 50,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Justin Smith",
"firstName": "Justin Smith",
"slug": "justin-smith",
"shortName": "J. Smith",
"position": "M",
"jerseyNumber": "40",
"height": 188,
"userCount": 69,
"id": 1110904,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 315000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0645\u064a\u062b \u060c \u062c\u0627\u0633\u062a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0627\u0633\u062a\u0646"
}
}
},
"teamId": 37055,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 28,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 28,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0869,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0842201
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Almansa",
"firstName": "",
"lastName": "",
"slug": "almansa-alex",
"shortName": "A. Almansa",
"position": "F",
"jerseyNumber": "39",
"height": 186,
"userCount": 48,
"id": 1391614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068249600,
"proposedMarketValueRaw": {
"value": 47000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 20,
"rating": 7.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.1581
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 50,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.5,
"possessionLostCtrl": 22,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.324332
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 42,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 3,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 54,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0697,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0190366
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 5,
"wonContest": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 84,
"touches": 62,
"rating": 6.1,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0855428
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 58,
"rating": 7.5,
"possessionLostCtrl": 19,
"expectedGoals": 0.2403,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.11767
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 81,
"accuratePass": 72,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 8,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 98,
"rating": 7.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0281,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0608762
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 33,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.1705,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.202303
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.033,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0378932
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalTackle": 1,
"minutesPlayed": 65,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 19,
"expectedGoals": 0.4509,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0749827
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.1426,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0842947
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 3,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0188,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0899797
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 45,
"accuratePass": 43,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 50,
"rating": 7.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.439713
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 25,
"touches": 10,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.4027,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 25,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0686,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0057064
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 16,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 16,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 16,
"totalLongBalls": 19,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 60,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.072
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 8,
"totalContest": 2,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 55,
"rating": 7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 81,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 40,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 6,
"totalClearance": 9,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 2,
"totalClearance": 6,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 32,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"wasFouled": 2,
"minutesPlayed": 87,
"touches": 50,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 33,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 12,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 3,
"totalTackle": 6,
"errorLeadToAShot": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 2,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 64,
"touches": 49,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0115058
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 64,
"touches": 29,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00624861
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 7,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 87,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 19,
"expectedGoals": 0.0217,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 4,
"wonContest": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.4,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00705444
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"minutesPlayed": 30,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.0638
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 26,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"fouls": 1,
"minutesPlayed": 26,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 19,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 2,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6,
"alternative": null
},
"goalsPrevented": -1.2843
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 51,
"accuratePass": 47,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 2,
"duelWon": 11,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0112876
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 56,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.024008
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 56,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 82,
"rating": 6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0515,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0408077
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 49,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 8.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.1546,
"keyPass": 3,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.282169
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.5606,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0364262
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 39,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 72,
"touches": 56,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0195,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0093601
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 47,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 11,
"accurateCross": 4,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 8.4,
"possessionLostCtrl": 15,
"expectedGoals": 0.0636,
"keyPass": 3,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.297872
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 10,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 8,
"wonContest": 4,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.0222,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.255769
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0391,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.025156
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"penaltyWon": 1,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 22,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.1396,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0158837
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"fouls": 1,
"minutesPlayed": 28,
"touches": 10,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.9206,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Lucas Garc\u00eda",
"firstName": "Lucas Garc\u00eda",
"slug": "lucas-garcia",
"shortName": "L. Garc\u00eda",
"position": "G",
"jerseyNumber": "42",
"userCount": 22,
"id": 1971651,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1087516800
},
"teamId": 368693,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Aleksandar Andreev",
"slug": "andreev",
"shortName": "A. Andreev",
"position": "G",
"jerseyNumber": "43",
"height": 190,
"userCount": 79,
"id": 938629,
"country": {
"alpha2": "BG",
"alpha3": "BGR",
"name": "Bulgaria",
"slug": "bulgaria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1143244800
},
"teamId": 301517,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ferr\u00e1n Ruiz",
"firstName": "",
"lastName": "",
"slug": "ferran-ruiz",
"shortName": "F. Ruiz",
"position": "D",
"jerseyNumber": "45",
"height": 172,
"userCount": 50,
"id": 1119702,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051315200
},
"teamId": 368693,
"shirtNumber": 45,
"jerseyNumber": "45",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ra\u00fal Mart\u00ednez",
"firstName": "Ra\u00fal Mart\u00ednez",
"slug": "raul-martinez",
"shortName": "R. Mart\u00ednez",
"position": "M",
"jerseyNumber": "37",
"userCount": 29,
"id": 1937396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014422400
},
"teamId": 368693,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Enric Garcia",
"firstName": "Enric Garc\u00eda",
"slug": "garcia-enric",
"shortName": "E. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"userCount": 31,
"id": 1466131,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600
},
"teamId": 368693,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Min-su Kim",
"slug": "min-su-kim",
"shortName": "M. Kim",
"position": "F",
"jerseyNumber": "29",
"height": 177,
"userCount": 380,
"id": 1892528,
"country": {
"alpha2": "KR",
"alpha3": "KOR",
"name": "South Korea",
"slug": "south-korea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1137628800
},
"teamId": 368693,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Papa Dame Ba",
"slug": "papa-dame-ba",
"shortName": "P. D. Ba",
"position": "F",
"jerseyNumber": "44",
"height": 175,
"userCount": 112,
"id": 1897196,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1094947200
},
"teamId": 24264,
"shirtNumber": 44,
"jerseyNumber": "44",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Dawda Camara",
"firstName": "Dawda Camara",
"lastName": "",
"slug": "dawda-camara",
"shortName": "D. Camara",
"position": "F",
"jerseyNumber": "46",
"height": 175,
"userCount": 80,
"id": 1151851,
"country": {
"alpha2": "MR",
"alpha3": "MRT",
"name": "Mauritania",
"slug": "mauritania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036368000,
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0648\u062f\u0627 \u0643\u0645\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0645\u0627\u0631\u0627"
}
}
},
"teamId": 368693,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 10,
"totalLongBalls": 19,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 36,
"rating": 6,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6,
"alternative": null
},
"goalsPrevented": -2.0994
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 22,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"errorLeadToAGoal": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 77,
"touches": 46,
"rating": 6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0729688
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 66,
"accuratePass": 62,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"ownGoals": 1,
"fouls": 2,
"minutesPlayed": 88,
"touches": 72,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0153161
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 4,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 5.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 5.7,
"alternative": null
},
"expectedAssists": 0.00770657
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0536414
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 77,
"touches": 34,
"rating": 6.1,
"possessionLostCtrl": 2,
"expectedGoals": 0.0364,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00814166
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 2,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 76,
"touches": 38,
"rating": 6.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 35,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.1218,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0070643
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 25,
"goalAssist": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 89,
"touches": 32,
"rating": 7.5,
"possessionLostCtrl": 1,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0596395
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"duelLost": 2,
"duelWon": 4,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.0954,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0855886
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 11,
"aerialWon": 2,
"duelLost": 19,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 3,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 17,
"expectedGoals": 0.0523,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0156412
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 14,
"touches": 12,
"rating": 7.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.0251,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0116794
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 13,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00767652
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 11,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 22,
"accuratePass": 13,
"totalLongBalls": 15,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.6385
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 11,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0350098
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 13,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 8,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0802,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.0219043
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0915,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.0567,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0138028
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 5,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 85,
"touches": 64,
"rating": 8,
"possessionLostCtrl": 8,
"expectedGoals": 0.2277,
"keyPass": 5,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.999777
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 34,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 7,
"duelLost": 10,
"duelWon": 11,
"challengeLost": 2,
"dispossessed": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.9,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0229735
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 33,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 53,
"rating": 8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1003,
"keyPass": 3,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.869408
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 63,
"touches": 26,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.1595,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.230119
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 10,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 5,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"goals": 1,
"wasFouled": 3,
"penaltyWon": 1,
"minutesPlayed": 85,
"touches": 38,
"rating": 8.1,
"possessionLostCtrl": 12,
"expectedGoals": 1.4858,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0584187
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 85,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.2522,
"keyPass": 6,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 1.00859
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 27,
"touches": 19,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0229,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00523384
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"fouls": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 10,
"touches": 2,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 10,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 23,
"totalLongBalls": 20,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.9,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.1604
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 48,
"accuratePass": 37,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 8,
"outfielderBlock": 3,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0058,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"interceptionWon": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.2,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0055037
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 12,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 81,
"touches": 55,
"rating": 6.9,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0182218
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 58,
"touches": 38,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 4,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 58,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0122278
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 58,
"touches": 18,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.11,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.6,
"possessionLostCtrl": 21,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00974281
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 7,
"dispossessed": 2,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00684353
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 32,
"touches": 33,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0948,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0161223
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0189,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00675629
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 27,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00668807
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Maroto",
"firstName": "",
"lastName": "",
"slug": "mario-maroto",
"shortName": "M. Maroto",
"position": "M",
"jerseyNumber": "34",
"height": 176,
"userCount": 23,
"id": 1086415,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041379200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 9,
"totalLongBalls": 23,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.9,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": 0.3014
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 11,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 4,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.1013,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0221526
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 23,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.0735,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 27,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 9,
"shotOffTarget": 1,
"totalClearance": 5,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.0718,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 18,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.1183,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00523781
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 10,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 9,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 5,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0199,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0160897
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 17,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.095316
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 4,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 20,
"keyPass": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0843891
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 80,
"touches": 32,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.3223,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0783759
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 22,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"minutesPlayed": 89,
"touches": 44,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.0436,
"keyPass": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.104129
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 4,
"duelLost": 10,
"duelWon": 11,
"dispossessed": 3,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 6,
"fouls": 2,
"minutesPlayed": 89,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.108422
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 73,
"touches": 45,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.013159
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"bigChanceCreated": 1,
"minutesPlayed": 10,
"touches": 5,
"rating": 6.9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0716497
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1,
"expectedGoals": 0.4044
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 21,
"totalLongBalls": 24,
"accurateLongBalls": 11,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.2,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00716443,
"goalsPrevented": 0.1952
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 11,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00913554
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 8,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0253,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 4,
"duelLost": 5,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.5,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0952568
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 16,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 79,
"touches": 38,
"rating": 6.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0229,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 45,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0391,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.236825
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 69,
"touches": 42,
"rating": 6.6,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0104688
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 5,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 3,
"minutesPlayed": 79,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0472,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.176337
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 11,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 56,
"touches": 23,
"rating": 6.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.1357,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00831428
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 69,
"touches": 20,
"rating": 6.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.1363,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 34,
"touches": 11,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.1037,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0232957
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 21,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00585006
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 21,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0278108
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.9,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0115135
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 2,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0195565
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 32,
"totalLongBalls": 37,
"accurateLongBalls": 23,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"goalsPrevented": 0.0722
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.4,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.12126
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00509276
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 3,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0217,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0373138
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 19,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.1,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00716578
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 5,
"wonContest": 3,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 65,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00612072
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 89,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0146254
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 23,
"touches": 13,
"rating": 4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 4,
"alternative": null
}
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.1953,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00932177
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 16,
"duelLost": 7,
"duelWon": 19,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 20,
"expectedGoals": 0.4703,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00501892
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 25,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 29,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 25,
"touches": 10,
"rating": 6.9,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.111483
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 3
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 1,
"touches": 5,
"possessionLostCtrl": 3
},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Siebe Van Der Heyden",
"firstName": "",
"lastName": "",
"slug": "siebe-van-der-heyden",
"shortName": "S. V. D. Heyden",
"position": "D",
"jerseyNumber": "4",
"height": 185,
"userCount": 238,
"id": 842164,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896486400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0647 \u0641\u0640\u0627\u0646 \u062f\u064a\u0631 \u0647\u0627\u064a\u062f\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0641. \u062f. \u0647\u0627\u064a\u062f\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Mallorca"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 25,
"rating": 7.2,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.2762
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 44,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 82,
"touches": 74,
"rating": 6.7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0166078
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 53,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 7,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0247,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0535183
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 27,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"fouls": 2,
"minutesPlayed": 45,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0688,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 70,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 107,
"rating": 7.5,
"possessionLostCtrl": 18,
"expectedGoals": 0.0538,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.188208
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 38,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 70,
"touches": 52,
"rating": 7.3,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.190487
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 48,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 7,
"duelLost": 13,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0729097
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 12,
"expectedGoals": 0.0353,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0239201
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 57,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0736,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0191792
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"duelLost": 6,
"duelWon": 3,
"totalContest": 8,
"wonContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.2,
"possessionLostCtrl": 20,
"expectedGoals": 0.0579,
"keyPass": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.25165
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"shotOffTarget": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 57,
"touches": 14,
"rating": 6.9,
"possessionLostCtrl": 2,
"expectedGoals": 0.052,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 55,
"accuratePass": 51,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 60,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0407,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0901794
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 3,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 33,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0682,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00793062
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"shotOffTarget": 2,
"totalTackle": 1,
"minutesPlayed": 33,
"touches": 31,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.085,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.069913
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 20,
"touches": 28,
"rating": 7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0269,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0311418
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.255
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 51,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 79,
"touches": 80,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0329,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.134411
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 70,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 3,
"challengeLost": 3,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 90,
"rating": 6.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0121315
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 58,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 6,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.6936,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00673498
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 19,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"minutesPlayed": 90,
"touches": 100,
"rating": 7.1,
"possessionLostCtrl": 26,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.261529
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 60,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.1962,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0418792
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 70,
"touches": 38,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.490285
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 56,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.1033,
"keyPass": 4,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.192091
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 42,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 3,
"minutesPlayed": 70,
"touches": 54,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.1114,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0365327
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 1,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 70,
"touches": 58,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.4278,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.228963
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00785959
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 4,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"errorLeadToAShot": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 48,
"rating": 7.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0761,
"keyPass": 4,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.357848
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"minutesPlayed": 20,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 20,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0059,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0208005
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"totalContest": 1,
"totalOffside": 1,
"minutesPlayed": 20,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0164092
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 13,
"totalLongBalls": 31,
"accurateLongBalls": 13,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 6,
"saves": 9,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 43,
"rating": 9.3,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 9.3,
"alternative": null
},
"expectedAssists": 0.00547964,
"goalsPrevented": 1.2974
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 3,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.3,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0229461
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 9,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0281,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 83,
"touches": 26,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0211,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00516524
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 15,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 7,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.1304,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0322,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.119623
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"minutesPlayed": 63,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00547791
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 34,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.6255,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0138762
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 2,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 10,
"wonContest": 6,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"minutesPlayed": 83,
"touches": 36,
"rating": 8.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0729,
"keyPass": 4,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.429009
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"minutesPlayed": 27,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.0693,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 4,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 2
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Mu\u00f1oz",
"firstName": "",
"lastName": "",
"slug": "iker-munoz",
"shortName": "I. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 216,
"id": 1119586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036454400,
"proposedMarketValueRaw": {
"value": 4500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0643\u064a\u0631 \u0645\u0648\u0646\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Kike Barja",
"slug": "kike-barja",
"shortName": "K. Barja",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 121,
"id": 591132,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860112000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u062c\u0627, \u0627\u0646\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0631\u062c\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 12,
"accurateLongBalls": 9,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 31,
"rating": 7.7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.018306,
"goalsPrevented": 0.2968
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 8,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 89,
"touches": 71,
"rating": 8.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0237,
"keyPass": 3,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.0395449
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 41,
"accuratePass": 31,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 10,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.0595,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"totalClearance": 7,
"interceptionWon": 4,
"lastManTackle": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 37,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.4,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.013071
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 8,
"possessionLostCtrl": 11,
"expectedGoals": 0.1226,
"keyPass": 4,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.306584
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 78,
"rating": 8,
"possessionLostCtrl": 17,
"expectedGoals": 0.2082,
"keyPass": 2,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.183182
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0265,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0392711
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 2,
"shotOffTarget": 7,
"hitWoodwork": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 53,
"rating": 7.1,
"possessionLostCtrl": 18,
"expectedGoals": 0.7866,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0410409
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 33,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.4869,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0599992
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 77,
"touches": 32,
"rating": 7.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.1975,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0394547
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0483,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00548678
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 2
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"minutesPlayed": 1,
"touches": 5,
"possessionLostCtrl": 3
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 28,
"totalLongBalls": 25,
"accurateLongBalls": 13,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": -0.9158
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 33,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 9,
"challengeLost": 6,
"totalContest": 2,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 6.2,
"possessionLostCtrl": 25,
"keyPass": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.131953
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 51,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.6,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 45,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 3,
"interceptionWon": 1,
"totalTackle": 2,
"ownGoals": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.0652,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0100863
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 28,
"rating": 6.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0722,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 45,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 3,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 84,
"touches": 68,
"rating": 6.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0242117
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 67,
"accuratePass": 61,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0461,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.022655
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 6.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 17,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"minutesPlayed": 71,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0318025
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 70,
"touches": 48,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0744,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.036367
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0571,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.074255
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"minutesPlayed": 45,
"touches": 38,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0237,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0136948
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 4,
"duelWon": 8,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 29,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0678,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.1312
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"hitWoodwork": 2,
"minutesPlayed": 20,
"touches": 13,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.1322,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0358514
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 19,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.118018
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thomas Lemar",
"firstName": "",
"lastName": "",
"slug": "thomas-lemar",
"shortName": "T. Lemar",
"position": "M",
"jerseyNumber": "11",
"height": 170,
"userCount": 3268,
"id": 191182,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 816134400,
"proposedMarketValueRaw": {
"value": 7700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0122513
},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Ilias Kostis",
"firstName": "",
"lastName": "",
"slug": "ilias-kostis",
"shortName": "I. Kostis",
"position": "D",
"jerseyNumber": "5",
"height": 191,
"userCount": 585,
"id": 1145621,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046304000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Geronimo Spina",
"firstName": "Ger\u00f3nimo Spina",
"slug": "geronimo-spina",
"shortName": "G. Spina",
"position": "D",
"jerseyNumber": "12",
"height": 187,
"userCount": 186,
"id": 1544426,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107907200,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Aitor Gismera",
"firstName": "",
"lastName": "",
"slug": "aitor-gismera",
"shortName": "A. Gismera",
"position": "M",
"jerseyNumber": "10",
"height": 182,
"userCount": 113,
"id": 1142586,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1077321600,
"proposedMarketValueRaw": {
"value": 265000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"goodHighClaim": 2,
"totalKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.0142
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 9,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0866421
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 65,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0241076
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 36,
"totalLongBalls": 16,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.0192,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.271288
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 22,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 7.2,
"possessionLostCtrl": 17,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.17652
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 5,
"minutesPlayed": 45,
"touches": 19,
"rating": 6.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.1253,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0195559
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 5,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 2,
"bigChanceMissed": 2,
"shotOffTarget": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 1.2327,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0098927
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 66,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 3,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 3,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 95,
"rating": 7.4,
"possessionLostCtrl": 21,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.346136
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 40,
"rating": 6.5,
"possessionLostCtrl": 17,
"expectedGoals": 0.1981,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0225554
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 20,
"rating": 7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.115189
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 5,
"duelWon": 10,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 4,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.5571,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 45,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.1012,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0341891
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0289,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0500643
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.045863
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 15,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 14,
"totalLongBalls": 32,
"accurateLongBalls": 12,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.4,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.8717
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 5,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 4,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 52,
"touches": 36,
"rating": 6.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0558617
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 8,
"totalLongBalls": 13,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 2,
"totalClearance": 6,
"fouls": 3,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.3,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 8,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 7,
"totalClearance": 11,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 3,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 23,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Jos\u00e9 Luis Gay\u00e0",
"slug": "jose-luis-gaya",
"shortName": "J. L. Gay\u00e0",
"position": "D",
"jerseyNumber": "14",
"height": 172,
"userCount": 1789,
"id": 227922,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801360000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 17,
"accuratePass": 7,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 22,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0317948
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 11,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 28,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.484,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00525357
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1126,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"totalContest": 3,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 30,
"rating": 6.6,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 4,
"duelLost": 13,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 5,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.7,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00551382
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"totalTackle": 3,
"minutesPlayed": 38,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0336049
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 15,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 15,
"touches": 4,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Rodrigo Abajas",
"slug": "rodrigo-abajas",
"shortName": "R. Abajas",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 23,
"id": 1657026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1070582400,
"proposedMarketValueRaw": {
"value": 94000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
}
]
[
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 20,
"totalLongBalls": 33,
"accurateLongBalls": 12,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 5,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.8,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.00583162,
"goalsPrevented": 1.4325
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 43,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 6,
"outfielderBlock": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00517323
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.026244
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00732554
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 54,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0255,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00894226
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 11,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 2,
"totalTackle": 5,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0155444
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 8,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"goalAssist": 1,
"totalCross": 5,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 69,
"touches": 44,
"rating": 7.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0114,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.210715
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 6,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 65,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.2943,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00674052
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"minutesPlayed": 54,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"fouls": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.4541,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 36,
"touches": 23,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.5117,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0193092
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 36,
"touches": 19,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.2048,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0757472
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 25,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0414985
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 2,
"duelWon": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 21,
"touches": 15,
"rating": 7.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.1145,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.33928
},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.7628
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 40,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 5,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 80,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 47,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 6,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 56,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.04,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0123033
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 66,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 115,
"rating": 6.7,
"possessionLostCtrl": 28,
"expectedGoals": 0.0217,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0863169
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 73,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 80,
"touches": 88,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0325,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0928077
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 63,
"touches": 57,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0176,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0474866
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.7,
"possessionLostCtrl": 23,
"expectedGoals": 0.258,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.192377
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 52,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.2752,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0746422
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 63,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0171744
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 6,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 62,
"touches": 41,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0721,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0437165
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 23,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0117326
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 28,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 27,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.1284,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"minutesPlayed": 10,
"touches": 8,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"minutesPlayed": 10,
"touches": 13,
"rating": 7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0695,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0329731
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 19,
"totalLongBalls": 21,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -1.2447
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 62,
"rating": 6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.076326
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 5,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.047,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00939105
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0113181
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 86,
"touches": 50,
"rating": 6.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.4985,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 22,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.5,
"possessionLostCtrl": 17,
"expectedGoals": 0.024,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00575769
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 24,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00897371
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 77,
"touches": 42,
"rating": 7.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.017063
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"bigChanceMissed": 2,
"onTargetScoringAttempt": 3,
"totalOffside": 8,
"minutesPlayed": 90,
"touches": 27,
"rating": 6,
"possessionLostCtrl": 9,
"expectedGoals": 0.5784,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00695923
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 9,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 7,
"fouls": 3,
"totalOffside": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.3218,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.192695
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"minutesPlayed": 27,
"touches": 23,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.0118,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.197364
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 6,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 4,
"touches": 4
},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Madrid"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 22,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 0.4947
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 4,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 75,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0200276
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 43,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0059499
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0309,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.148024
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"bigChanceCreated": 1,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.5,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0966574
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 47,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 65,
"touches": 70,
"rating": 7.4,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.179657
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 54,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 73,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0252,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0740698
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.4259,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.154781
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 19,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0187,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 20,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 3,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 45,
"rating": 8.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.6691,
"keyPass": 3,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.319972
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"hitWoodwork": 1,
"goals": 2,
"totalClearance": 5,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 8.4,
"possessionLostCtrl": 7,
"expectedGoals": 1.3915,
"keyPass": 1,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.00554159
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 37,
"accuratePass": 36,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0162922
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"minutesPlayed": 25,
"touches": 19,
"rating": 6.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0236,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.12646
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 3,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Diego Kochen",
"firstName": "Diego Kochen",
"lastName": "",
"slug": "kochen-diego",
"shortName": "D. Kochen",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 2394,
"id": 1402907,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1142726400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 14,
"totalLongBalls": 21,
"accurateLongBalls": 8,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.4,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.4803
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 3,
"interceptionWon": 4,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 85,
"touches": 50,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0155708
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 7,
"outfielderBlock": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.4,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00534598
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 57,
"rating": 8,
"possessionLostCtrl": 9,
"expectedGoals": 0.2133,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.175983
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 4,
"totalClearance": 1,
"interceptionWon": 5,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0988296
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 37,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 48,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.114439
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 60,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0213,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0358534
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 84,
"touches": 53,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0612,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.038391
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 10,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 6,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.4469,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0321446
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 9,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 70,
"touches": 33,
"rating": 7.3,
"possessionLostCtrl": 14,
"expectedGoals": 0.1552,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00935444
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 31,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 30,
"touches": 19,
"rating": 7.1,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.1713
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0122295
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 4,
"rating": 6.9,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.2441
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 43,
"touches": 31,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 89,
"accuratePass": 83,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 7,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 104,
"rating": 6.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00914983
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 99,
"accuratePass": 84,
"totalLongBalls": 9,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 110,
"rating": 6.8,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0758276
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 4,
"totalContest": 4,
"wonContest": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.2,
"possessionLostCtrl": 19,
"expectedGoals": 0.2567,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0618123
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 44,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 3,
"minutesPlayed": 89,
"touches": 75,
"rating": 6.1,
"possessionLostCtrl": 18,
"expectedGoals": 0.1695,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.078716
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 5,
"fouls": 4,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00669045
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 6,
"fouls": 2,
"minutesPlayed": 66,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 6,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0341,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0198785
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 4,
"wasFouled": 3,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.025947
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 7,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.1107,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Papa Dame Ba",
"slug": "papa-dame-ba",
"shortName": "P. D. Ba",
"position": "F",
"jerseyNumber": "44",
"height": 175,
"userCount": 112,
"id": 1897196,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1094947200
},
"teamId": 24264,
"shirtNumber": 44,
"jerseyNumber": "44",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 47,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0295,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 29,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 24,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0164211
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Min-su Kim",
"slug": "min-su-kim",
"shortName": "M. Kim",
"position": "F",
"jerseyNumber": "29",
"height": 177,
"userCount": 380,
"id": 1892528,
"country": {
"alpha2": "KR",
"alpha3": "KOR",
"name": "South Korea",
"slug": "south-korea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1137628800
},
"teamId": 368693,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 2
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Lucas Garc\u00eda",
"firstName": "Lucas Garc\u00eda",
"slug": "lucas-garcia",
"shortName": "L. Garc\u00eda",
"position": "G",
"jerseyNumber": "42",
"userCount": 22,
"id": 1971651,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1087516800
},
"teamId": 368693,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ra\u00fal Mart\u00ednez",
"firstName": "Ra\u00fal Mart\u00ednez",
"slug": "raul-martinez",
"shortName": "R. Mart\u00ednez",
"position": "M",
"jerseyNumber": "37",
"userCount": 29,
"id": 1937396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014422400
},
"teamId": 368693,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 13,
"totalLongBalls": 28,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 7,
"minutesPlayed": 90,
"touches": 43,
"rating": 8.2,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"goalsPrevented": 0.5896
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 9,
"wonContest": 6,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.0599,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0239699
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 39,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 7,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0919,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0129233
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 12,
"rating": 3.9,
"possessionLostCtrl": 2,
"expectedGoals": 0.0876,
"ratingVersions": {
"original": 3.9,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 9,
"wonContest": 6,
"bigChanceCreated": 2,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 84,
"touches": 47,
"rating": 7.3,
"possessionLostCtrl": 15,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.377642
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 34,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 9,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 4,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.034,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0134065
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 43,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 60,
"touches": 59,
"rating": 7.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.062,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0220933
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 14,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.230257
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"totalContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 65,
"touches": 40,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.256,
"keyPass": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.140716
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 60,
"touches": 38,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.4134,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0465959
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 30,
"touches": 15,
"rating": 7.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0742,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0702251
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"wasFouled": 1,
"minutesPlayed": 30,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.4381,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0335267
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 4,
"duelWon": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"minutesPlayed": 25,
"touches": 10,
"rating": 6.8,
"expectedGoals": 0.3667,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.6,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0205153
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 16,
"rating": 7.1,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 15,
"totalLongBalls": 16,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"ownGoals": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0322484,
"goalsPrevented": -0.0952
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"totalContest": 1,
"totalClearance": 3,
"fouls": 1,
"minutesPlayed": 32,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 44,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0291976
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 51,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"interceptionWon": 3,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0616496
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"totalClearance": 2,
"totalTackle": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0960229
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.3084,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.136606
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 1,
"challengeLost": 4,
"dispossessed": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0273,
"keyPass": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0748609
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 5,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 60,
"touches": 41,
"rating": 6.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.0171,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00521081
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 12,
"duelWon": 3,
"challengeLost": 6,
"dispossessed": 5,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 73,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.167,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0587661
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 6,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 3,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0839,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.169615
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 53,
"accuratePass": 43,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 58,
"touches": 65,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.2554,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.028054
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0132477
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 17,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.0801,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0439679
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Egoitz Mu\u00f1oz",
"slug": "egoitz-munoz",
"shortName": "E. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "27",
"userCount": 14,
"id": 1518514,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081900800,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 254356,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 37,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 3,
"savedShotsFromInsideTheBox": 5,
"saves": 7,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 8.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.00591461,
"goalsPrevented": 2.8007
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 30,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.4,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0574841
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 67,
"accuratePass": 60,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00548011
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 65,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0103297
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 8,
"challengeLost": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 6,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 55,
"rating": 7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"errorLeadToAShot": 1,
"wasFouled": 1,
"minutesPlayed": 71,
"touches": 45,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0078,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 40,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0193,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00596565
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 88,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.021,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 79,
"touches": 34,
"rating": 6.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0219,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0356422
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.116014
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"penaltyWon": 1,
"minutesPlayed": 71,
"touches": 17,
"rating": 7.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.8433,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 19,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00567711
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 19,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0628421
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 2,
"touches": 6,
"possessionLostCtrl": 2
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"shotOffTarget": 1,
"minutesPlayed": 2,
"touches": 1,
"expectedGoals": 0.0291
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"goalsPrevented": -0.1307
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 65,
"totalLongBalls": 3,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 7.1,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.46057
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 67,
"accuratePass": 62,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00505529
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 62,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 2,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0123,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0201787
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.2463,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.101317
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 82,
"touches": 50,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.0919,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.141242
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 70,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1139,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0193693
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 72,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 7.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0385414
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 4,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 89,
"touches": 68,
"rating": 8.5,
"possessionLostCtrl": 17,
"expectedGoals": 0.1415,
"keyPass": 7,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.248957
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 33,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 55,
"rating": 7.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.2026,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0395776
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 70,
"touches": 21,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.4847,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"totalContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"wasFouled": 2,
"minutesPlayed": 20,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.2819,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 20,
"touches": 10,
"rating": 7.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.5574,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0480383
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 8,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.2326,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00936721
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"totalContest": 2,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 3
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Rub\u00e9n G\u00f3mez",
"firstName": "Rub\u00e9n G\u00f3mez Peris",
"lastName": "",
"slug": "ruben-gomez",
"shortName": "R. G\u00f3mez",
"position": "G",
"jerseyNumber": "55",
"height": 185,
"userCount": 23,
"id": 1407702,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1011830400,
"proposedMarketValueRaw": {
"value": 97000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 55,
"jerseyNumber": "55",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Willy Kambwala",
"firstName": "Willy Kambwala",
"slug": "kambwala-willy",
"shortName": "W. Kambwala",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 2643,
"id": 1136721,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093392000,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": 0.1268
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 5,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 40,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00604421
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 38,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 9,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.1102,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0133326
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 38,
"totalLongBalls": 14,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 6,
"duelLost": 3,
"duelWon": 11,
"shotOffTarget": 2,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.2,
"possessionLostCtrl": 18,
"expectedGoals": 0.1136,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00908916
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 58,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.039,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0637619
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 20,
"accurateCross": 5,
"aerialLost": 1,
"duelLost": 6,
"challengeLost": 1,
"totalContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.2,
"possessionLostCtrl": 24,
"expectedGoals": 0.0647,
"keyPass": 5,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.403369
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 4,
"duelLost": 10,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.2,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0856975
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 4,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.018,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0178955
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"totalContest": 3,
"totalClearance": 1,
"wasFouled": 3,
"minutesPlayed": 68,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0091996
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 81,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.0473,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"shotOffTarget": 2,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 58,
"touches": 16,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.2567,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 28,
"rating": 6.9,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.185981
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 2,
"minutesPlayed": 32,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.2451,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"minutesPlayed": 22,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0639,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.011338
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.2245,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 9,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0388,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0056487
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 24,
"totalLongBalls": 14,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 64,
"touches": 41,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.0672
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 35,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00841738
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 43,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 8,
"outfielderBlock": 2,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 8,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0279228
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 56,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.100081
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 59,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 5,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.8,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.368071
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 9,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalClearance": 4,
"errorLeadToAShot": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 89,
"touches": 51,
"rating": 8,
"possessionLostCtrl": 15,
"expectedGoals": 0.095,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.136925
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"minutesPlayed": 81,
"touches": 38,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.255,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0214521
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 4,
"totalContest": 4,
"wonContest": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0129553
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 89,
"touches": 41,
"rating": 6.5,
"possessionLostCtrl": 19,
"expectedGoals": 0.125,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.062065
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 27,
"touches": 32,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.106117
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 4,
"totalLongBalls": 18,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 2,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 26,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"minutesPlayed": 9,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.323,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 1
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 2
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 13,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -1.262
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 75,
"touches": 49,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.1562,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0490936
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 46,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.1127,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0103705
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 54,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"totalContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00685574
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Rodrigo Abajas",
"slug": "rodrigo-abajas",
"shortName": "R. Abajas",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 23,
"id": 1657026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1070582400,
"proposedMarketValueRaw": {
"value": 94000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 11,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 40,
"rating": 6.2,
"possessionLostCtrl": 14,
"expectedGoals": 0.0724,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 2,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 55,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.1531,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0670436
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 55,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00959621
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 49,
"accuratePass": 41,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 69,
"touches": 63,
"rating": 7.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.8353,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0760725
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 12,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 24,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0137137
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 75,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0823,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0805,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0660459
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 35,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0391,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0143656
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 35,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.026,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.127934
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jos\u00e9 Luis Gay\u00e0",
"slug": "jose-luis-gaya",
"shortName": "J. L. Gay\u00e0",
"position": "D",
"jerseyNumber": "14",
"height": 172,
"userCount": 1789,
"id": 227922,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801360000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u0627, \u062e\u0648\u0633\u064a \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644. \u063a\u0627\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelWon": 1,
"bigChanceCreated": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 24,
"touches": 31,
"rating": 7.2,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.177876
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 19,
"rating": 7.1,
"possessionLostCtrl": 3,
"expectedGoals": 0.0969,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 16,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0190842
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jaume Dom\u00e9nech",
"slug": "jaume-domenech",
"shortName": "J. Dom\u00e9nech",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 212,
"id": 235386,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 657763200,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643, \u062c\u0627\u0648\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u062f\u0648\u0645\u064a\u0646\u064a\u0643"
}
}
},
"teamId": 2828,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 17,
"totalLongBalls": 28,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.3,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.2262
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 9,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 74,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 45,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 29,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 3,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 74,
"touches": 49,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.1528,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0138096
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0241,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00542082
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 6,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"errorLeadToAShot": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 59,
"touches": 53,
"rating": 7.1,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.101694
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 5,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 66,
"touches": 47,
"rating": 6.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.1084,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.318175
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 53,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0963,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.154411
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 46,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.4307,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0163825
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 6,
"interceptionWon": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 66,
"touches": 40,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.272,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.12153
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 27,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 24,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0577,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"minutesPlayed": 24,
"touches": 23,
"rating": 7.2,
"possessionLostCtrl": 7,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.119352
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 2,
"goalAssist": 0,
"totalClearance": 2,
"minutesPlayed": 16,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 31,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 2,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.232
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 4,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 3,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 68,
"rating": 7,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0273621
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 94,
"accuratePass": 91,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 103,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.016951
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 116,
"accuratePass": 107,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 126,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0265478
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 34,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.092,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0276827
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 48,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.058,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0236321
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 68,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 3,
"dispossessed": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 83,
"touches": 86,
"rating": 8.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1066,
"keyPass": 3,
"ratingVersions": {
"original": 8.8,
"alternative": null
},
"expectedAssists": 0.644054
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"goalAssist": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 7,
"wonContest": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 76,
"touches": 54,
"rating": 7.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.7625,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.349741
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"duelLost": 3,
"duelWon": 8,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 2,
"shotOffTarget": 2,
"totalClearance": 1,
"totalTackle": 5,
"wasFouled": 1,
"penaltyWon": 1,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 46,
"rating": 8.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.1081,
"keyPass": 4,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.137287
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 29,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 76,
"touches": 45,
"rating": 6.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.4317,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.189014
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"goals": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 33,
"rating": 8.2,
"possessionLostCtrl": 9,
"expectedGoals": 1.9486,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.0249185
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferm\u00edn L\u00f3pez",
"firstName": "Ferm\u00edn L\u00f3pez",
"slug": "fermin-lopez",
"shortName": "F. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 176,
"userCount": 54696,
"id": 1153270,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052611200,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0645\u064a\u0646 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2817,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 24,
"touches": 18,
"rating": 6.9,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0995874
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 24,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.3807,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0551709
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"duelWon": 3,
"totalTackle": 3,
"minutesPlayed": 14,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"fouls": 1,
"minutesPlayed": 14,
"touches": 11,
"rating": 8.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.1802,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.141846
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gavi",
"firstName": "",
"lastName": "",
"slug": "gavi",
"shortName": "Gavi",
"position": "M",
"jerseyNumber": "6",
"height": 173,
"userCount": 143469,
"id": 1103693,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091664000,
"proposedMarketValueRaw": {
"value": 93000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u0641\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 10,
"rating": 6.6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0548125
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Diego Kochen",
"firstName": "Diego Kochen",
"lastName": "",
"slug": "kochen-diego",
"shortName": "D. Kochen",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 2394,
"id": 1402907,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1142726400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Wojciech Szcz\u0119sny",
"slug": "wojciech-szczesny",
"shortName": "W. Szcz\u0119sny",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 30458,
"id": 50490,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 640396800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u064a\u062a\u0634\u064a\u0643 \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0634\u062a\u0634\u064a\u0633\u0646\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 14,
"totalLongBalls": 19,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 3,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"punches": 3,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.4576
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.009008
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 4,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0173141
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.1,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 3,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 6,
"fouls": 1,
"minutesPlayed": 81,
"touches": 36,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00635947
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"minutesPlayed": 70,
"touches": 30,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.047,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00676266
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 6,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 38,
"rating": 5.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.1917,
"keyPass": 1,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.0414881
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 19,
"rating": 6,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 3,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 23,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.0913,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0190262
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0171558
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 25,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0312,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.125739
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 20,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 20,
"touches": 6,
"rating": 7,
"possessionLostCtrl": 1,
"expectedGoals": 0.5611,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 9,
"rating": 6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 19,
"totalLongBalls": 18,
"accurateLongBalls": 5,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.7376
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 41,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0204939
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"totalClearance": 5,
"outfielderBlock": 3,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 7.1,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 6,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.9,
"possessionLostCtrl": 18,
"expectedGoals": 0.255,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.116036
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 11,
"duelWon": 10,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 6,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.2318,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.156209
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 43,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 8,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.2,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0495164
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 69,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 18,
"expectedGoals": 0.0604,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0218949
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 79,
"touches": 45,
"rating": 7.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.2329,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.140074
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 79,
"touches": 48,
"rating": 6.5,
"possessionLostCtrl": 22,
"keyPass": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.337743
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 1,
"goalAssist": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 1,
"wasFouled": 3,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 18,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.1154,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0411202
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 21,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 4,
"expectedGoals": 0.0132,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0271754
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 11,
"touches": 10,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"fouls": 1,
"minutesPlayed": 11,
"touches": 2,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Antonio Espigares",
"firstName": "",
"lastName": "",
"slug": "espigares-antonio",
"shortName": "A. Espigares",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 24,
"id": 1142261,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1094342400,
"proposedMarketValueRaw": {
"value": 465000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Villarreal"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 16,
"totalLongBalls": 28,
"accurateLongBalls": 13,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"totalTackle": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 7.1,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00766066,
"goalsPrevented": 0.5531
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialWon": 2,
"duelWon": 4,
"bigChanceCreated": 1,
"totalClearance": 4,
"interceptionWon": 5,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.5,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.181362
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 7,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00780826
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00747048
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 26,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 3,
"totalClearance": 1,
"interceptionWon": 4,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.9,
"possessionLostCtrl": 16,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0667309
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 1,
"blockedScoringAttempt": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0266,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.161455
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 3,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.9604,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0130139
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.052,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.214912
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 68,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.2334,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00625563
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 9,
"duelLost": 10,
"duelWon": 13,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 4,
"penaltyWon": 1,
"minutesPlayed": 89,
"touches": 31,
"rating": 7.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.356,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.124356
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.14295
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 22,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.2536,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 3,
"minutesPlayed": 22,
"touches": 15,
"rating": 7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0624,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 1
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Allan Nyom",
"slug": "allan-nyom",
"shortName": "A. Nyom",
"position": "D",
"jerseyNumber": "12",
"height": 190,
"userCount": 293,
"id": 128637,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 579225600,
"proposedMarketValueRaw": {
"value": 550000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0648\u0645, \u0623\u0644\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 1
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djordjije Medenica",
"firstName": "Djordjije Medenica",
"slug": "djordjije-medenica",
"shortName": "D. Medenica",
"position": "G",
"height": 185,
"userCount": 24,
"id": 1645004,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1163721600
},
"teamId": 375393,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"goodHighClaim": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 24,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.6541
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 40,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 60,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0445251
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 51,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.596695
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 56,
"rating": 6.8,
"possessionLostCtrl": 7,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0180275
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 43,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0258,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0153594
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 61,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 85,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0621,
"keyPass": 3,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.152713
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 53,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 57,
"touches": 70,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0600673
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 45,
"rating": 6.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0637,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0431229
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 55,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 90,
"rating": 9,
"possessionLostCtrl": 21,
"expectedGoals": 0.3082,
"keyPass": 4,
"ratingVersions": {
"original": 9,
"alternative": null
},
"expectedAssists": 0.283068
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 2,
"onTargetScoringAttempt": 4,
"blockedScoringAttempt": 3,
"goals": 2,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 2.1061,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0262419
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"fouls": 2,
"minutesPlayed": 57,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.8439,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0601712
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.7427,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0914352
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 5,
"aerialWon": 1,
"duelWon": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 33,
"touches": 30,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.1138,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.107586
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 11,
"totalLongBalls": 3,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 30,
"rating": 7.1,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.335064
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 4,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 37,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.2483,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0805014
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 26,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0111722
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thomas Lemar",
"firstName": "",
"lastName": "",
"slug": "thomas-lemar",
"shortName": "T. Lemar",
"position": "M",
"jerseyNumber": "11",
"height": 170,
"userCount": 3268,
"id": 191182,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 816134400,
"proposedMarketValueRaw": {
"value": 7700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 19,
"totalLongBalls": 22,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalClearance": 2,
"errorLeadToAGoal": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.8,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.5965
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 4,
"dispossessed": 1,
"totalClearance": 11,
"interceptionWon": 3,
"totalTackle": 5,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00532068
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 30,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 7,
"outfielderBlock": 2,
"interceptionWon": 4,
"errorLeadToAGoal": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 36,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 3,
"totalClearance": 15,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0284894
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"minutesPlayed": 83,
"touches": 38,
"rating": 6.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00721957
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0484,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00736845
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0811,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0505051
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 24,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"totalClearance": 2,
"outfielderBlock": 5,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 3,
"totalContest": 5,
"wonContest": 3,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 83,
"touches": 47,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0872,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 68,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0272,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.012329
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 77,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalOffside": 1,
"minutesPlayed": 22,
"touches": 14,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"totalClearance": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 22,
"touches": 20,
"rating": 5.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00666487
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"interceptionWon": 3,
"minutesPlayed": 18,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 21,
"totalLongBalls": 20,
"accurateLongBalls": 10,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.018906,
"goalsPrevented": 0.1702
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7,
"possessionLostCtrl": 20,
"expectedGoals": 0.0673,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0356344
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 10,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0789,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0095236
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0432,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.026,
"keyPass": 3,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.379584
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 72,
"touches": 34,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.4793,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0246483
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 36,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 77,
"touches": 54,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0327,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0135074
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 38,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 8,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.068,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.109489
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 27,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 56,
"rating": 7.5,
"possessionLostCtrl": 16,
"expectedGoals": 0.228,
"keyPass": 4,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.316165
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 8,
"duelLost": 6,
"duelWon": 11,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 38,
"rating": 7.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.8609,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0563919
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 72,
"touches": 25,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.1487,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.123872
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 18,
"touches": 3,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalOffside": 1,
"minutesPlayed": 18,
"touches": 11,
"rating": 7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.157474
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 13,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Javi Llabr\u00e9s",
"firstName": "Javi Llabr\u00e9s",
"lastName": "",
"slug": "javi-llabres",
"shortName": "J. Llabr\u00e9s",
"position": "F",
"jerseyNumber": "19",
"height": 174,
"userCount": 91,
"id": 1162309,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031702400,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u064a\u0627\u0628\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u064a\u0627\u0628\u0631\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 18,
"totalLongBalls": 25,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.5,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.5641
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 5,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0492333
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 41,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 4,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00591215
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 73,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0969,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00640113
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.2033,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0395497
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 25,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 63,
"touches": 45,
"rating": 6.8,
"possessionLostCtrl": 13,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.129929
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 6,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 55,
"touches": 36,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.045,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00537017
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.0194,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0844905
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"minutesPlayed": 55,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.2035,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0104,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 4,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 35,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0153,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0111016
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 35,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0101659
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 27,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0400952
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 26,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00578978
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"minutesPlayed": 17,
"touches": 5,
"rating": 6.3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 2,
"saves": 1,
"minutesPlayed": 90,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -1.2826
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 31,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 72,
"touches": 39,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 37,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00611521
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 53,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 8,
"dispossessed": 1,
"blockedScoringAttempt": 2,
"totalClearance": 5,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 76,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0871,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0345849
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 55,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.4,
"possessionLostCtrl": 17,
"expectedGoals": 0.0891,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.234542
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 76,
"accuratePass": 68,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 2,
"outfielderBlock": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 87,
"touches": 79,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0290091
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 65,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.0315,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.250589
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 4,
"wonContest": 3,
"totalClearance": 4,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0339238
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 35,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 78,
"touches": 57,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.195,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0434306
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 9,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 34,
"rating": 6.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.0177,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.141499
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 72,
"touches": 28,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.9103,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0136943
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 18,
"touches": 26,
"rating": 6.8,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00541413
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 13,
"rating": 7,
"possessionLostCtrl": 2,
"expectedGoals": 0.1189,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.120391
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"fouls": 1,
"minutesPlayed": 12,
"touches": 7,
"rating": 6.2,
"possessionLostCtrl": 2,
"expectedGoals": 0.368,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 4,
"rating": 6.7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0223026
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 12,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0165574
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Mihailo Risti\u0107",
"slug": "mihailo-ristic",
"shortName": "M. Risti\u0107",
"position": "D",
"jerseyNumber": "21",
"height": 180,
"userCount": 544,
"id": 363774,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815097600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0647\u064a\u0644\u0648 \u0631\u064a\u0633\u062a\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u064a\u0633\u062a\u0643"
}
}
},
"teamId": 2821,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jailson",
"firstName": "",
"lastName": "",
"slug": "jailson",
"shortName": "Jailson",
"position": "M",
"jerseyNumber": "16",
"height": 187,
"userCount": 515,
"id": 794861,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 810432000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 11,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.7408
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 67,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0108044
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 77,
"accuratePass": 74,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 89,
"rating": 7.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0453165
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 83,
"accuratePass": 70,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 3,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 90,
"rating": 6.7,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.015652
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 54,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 70,
"rating": 7,
"possessionLostCtrl": 9,
"keyPass": 3,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0639053
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.0581,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0201669
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 63,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0647,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.019386
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 35,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 70,
"touches": 51,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0103531
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 39,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.0227,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0396781
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 27,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 10,
"dispossessed": 1,
"totalContest": 8,
"wonContest": 5,
"bigChanceMissed": 1,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.5,
"possessionLostCtrl": 16,
"expectedGoals": 0.4588,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0279859
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 82,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.1337,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0571927
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 1,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 28,
"rating": 7.5,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.189524
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 1,
"minutesPlayed": 27,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 14,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"minutesPlayed": 20,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"duelWon": 4,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 8,
"touches": 14,
"rating": 6.9,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.7086
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 32,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 72,
"touches": 58,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.232816
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 55,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0412,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00775481
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 57,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 3,
"lastManTackle": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0246,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.010525
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 46,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0245717
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 4,
"blockedScoringAttempt": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.0302,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.049651
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 59,
"touches": 15,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0242747
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.084,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0145966
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0276,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.180196
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 17,
"expectedGoals": 0.1857,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0578017
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"wasFouled": 1,
"minutesPlayed": 31,
"touches": 19,
"rating": 7.1,
"possessionLostCtrl": 2,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.218466
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 31,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Min-su Kim",
"slug": "min-su-kim",
"shortName": "M. Kim",
"position": "F",
"jerseyNumber": "29",
"height": 177,
"userCount": 380,
"id": 1892528,
"country": {
"alpha2": "KR",
"alpha3": "KOR",
"name": "South Korea",
"slug": "south-korea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1137628800
},
"teamId": 368693,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 18,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Lucas Garc\u00eda",
"firstName": "Lucas Garc\u00eda",
"slug": "lucas-garcia",
"shortName": "L. Garc\u00eda",
"position": "G",
"jerseyNumber": "42",
"userCount": 22,
"id": 1971651,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1087516800
},
"teamId": 368693,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ra\u00fal Mart\u00ednez",
"firstName": "Ra\u00fal Mart\u00ednez",
"slug": "raul-martinez",
"shortName": "R. Mart\u00ednez",
"position": "M",
"jerseyNumber": "37",
"userCount": 29,
"id": 1937396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014422400
},
"teamId": 368693,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Enric Garcia",
"firstName": "Enric Garc\u00eda",
"slug": "garcia-enric",
"shortName": "E. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"userCount": 31,
"id": 1466131,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600
},
"teamId": 368693,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Silvi Cl\u00faa",
"slug": "silvi-clua",
"shortName": "S. Cl\u00faa",
"position": "M",
"jerseyNumber": "28",
"height": 189,
"userCount": 127,
"id": 1513673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1106956800
},
"teamId": 368693,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 10,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.2537
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 39,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0134634
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 77,
"accuratePass": 73,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0103776
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 63,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 5,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.2452,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.017,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.175088
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 44,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"totalContest": 3,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0192946
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"goals": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 80,
"touches": 52,
"rating": 7.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.4011,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0383195
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 5,
"expectedGoals": 0.1332,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0160605
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 50,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 80,
"touches": 67,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0664,
"keyPass": 3,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.225064
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 3,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 59,
"touches": 36,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0317,
"keyPass": 4,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.671386
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 65,
"touches": 17,
"rating": 6,
"possessionLostCtrl": 2,
"expectedGoals": 0.8311,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.028397
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"minutesPlayed": 31,
"touches": 25,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 25,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0097,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 10,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 26,
"accuratePass": 17,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"totalKeeperSweeper": 4,
"accurateKeeperSweeper": 4,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00985412,
"goalsPrevented": 0.7577
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 6.7,
"possessionLostCtrl": 22,
"expectedGoals": 0.0242,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.260895
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 41,
"totalLongBalls": 8,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 1,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0416886
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 41,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1163,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0129034
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.113546
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 77,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00979357
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 50,
"rating": 7.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.4927,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.169264
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 4,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 4,
"fouls": 2,
"minutesPlayed": 87,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.3338,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.257035
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 49,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.1898,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.177966
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 5,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 24,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.6238,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0317525
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"totalContest": 6,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 34,
"rating": 7.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.0786,
"keyPass": 4,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.768899
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0685,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0438969
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 13,
"touches": 8,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.065,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0152565
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 15,
"touches": 7,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0645,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"fouls": 1,
"minutesPlayed": 14,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00960772
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 3,
"minutesPlayed": 14,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 15,
"totalLongBalls": 22,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.5,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.8123
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.1972,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.591079
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 46,
"accuratePass": 34,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 8,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 88,
"touches": 63,
"rating": 7.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0287,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00981236
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0745,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 17,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7,
"possessionLostCtrl": 20,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.132732
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 18,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 1,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.027,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.260037
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 3,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 68,
"touches": 33,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0180637
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.2524,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.263078
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 60,
"touches": 24,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0080431
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 1.005,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00573068
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 45,
"touches": 22,
"rating": 7.9,
"possessionLostCtrl": 6,
"expectedGoals": 1.0549,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0102304
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"minutesPlayed": 30,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0366721
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 7,
"touches": 3,
"rating": 5.7,
"ratingVersions": {
"original": 5.7,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 3,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.7338
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 66,
"accuratePass": 51,
"totalLongBalls": 6,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.9,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.112017
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 72,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 87,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.3188,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0181479
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 52,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00514766
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 5,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 48,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.151085
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 55,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 9,
"dispossessed": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 6,
"fouls": 5,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.1,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0240487
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"goals": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 73,
"touches": 41,
"rating": 8.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.4204,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.0148779
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 2,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 78,
"touches": 53,
"rating": 9,
"possessionLostCtrl": 15,
"expectedGoals": 0.4517,
"keyPass": 2,
"ratingVersions": {
"original": 9,
"alternative": null
},
"expectedAssists": 0.0950763
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 2,
"duelLost": 6,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 4,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 73,
"touches": 45,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0799,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.098131
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 10,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0225,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 17,
"touches": 3,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 17,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.017,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0346676
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 12,
"touches": 3,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yeray \u00c1lvarez",
"slug": "yeray-alvarez",
"shortName": "Y. \u00c1lvarez",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 710,
"id": 807648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u064a\u0632, \u0625\u064a\u0631\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.6135
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00748718
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 51,
"accuratePass": 46,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 73,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0737787
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 2,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.1,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00948537
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 27,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0227562
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 63,
"touches": 33,
"rating": 6.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0501,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.013829
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"totalContest": 2,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.1,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 3,
"fouls": 1,
"minutesPlayed": 45,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00526675
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 45,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0446515
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 10,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 32,
"rating": 6.5,
"possessionLostCtrl": 12,
"expectedGoals": 0.1017,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0345744
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.107157
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 17,
"touches": 18,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.1185,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00714518
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Lloren\u00e7 Serred",
"firstName": "Lloren\u00e7 Serred",
"slug": "llorenc-serred",
"shortName": "L. Serred",
"position": "G",
"jerseyNumber": "34",
"userCount": 5,
"id": 1823560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125792000,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 15,
"totalLongBalls": 21,
"accurateLongBalls": 7,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0051266,
"goalsPrevented": -0.3814
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.22915
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 49,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.213,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0359974
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 53,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0107095
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.4,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.115195
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 37,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 3,
"dispossessed": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 61,
"touches": 55,
"rating": 6.3,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0176156
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 50,
"accuratePass": 40,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 78,
"touches": 61,
"rating": 6.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.018017
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.032766
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0747,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0163718
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 11,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 61,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0412,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.241495
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 7,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 28,
"rating": 7.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.1252,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"dispossessed": 2,
"minutesPlayed": 29,
"touches": 9,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 26,
"accuratePass": 16,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"minutesPlayed": 29,
"touches": 31,
"rating": 6.4,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0106753
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"totalContest": 2,
"minutesPlayed": 16,
"touches": 11,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0296148
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00938972
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 8,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0353,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Alejandro Jay",
"slug": "alejandro-jay",
"shortName": "A. Jay",
"position": "D",
"jerseyNumber": "35",
"height": 181,
"userCount": 16,
"id": 1001995,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026000000,
"proposedMarketValueRaw": {
"value": 155000,
"currency": "EUR"
}
},
"teamId": 254356,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 16,
"totalLongBalls": 23,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -0.4571
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Javi S\u00e1nchez",
"slug": "javi-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "D",
"jerseyNumber": "5",
"height": 189,
"userCount": 348,
"id": 943713,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 858297600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2831,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"minutesPlayed": 74,
"touches": 35,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.1087,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.3,
"possessionLostCtrl": 17,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.095439
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 4,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.8,
"possessionLostCtrl": 9,
"keyPass": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.257468
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 13,
"totalLongBalls": 6,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.1114,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00839824
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 4,
"duelLost": 6,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAGoal": 1,
"fouls": 4,
"minutesPlayed": 74,
"touches": 39,
"rating": 6.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0444,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 7,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 7,
"duelLost": 7,
"duelWon": 11,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 89,
"touches": 32,
"rating": 8,
"possessionLostCtrl": 10,
"expectedGoals": 0.5414,
"ratingVersions": {
"original": 8,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 4,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 74,
"touches": 32,
"rating": 7.8,
"possessionLostCtrl": 10,
"expectedGoals": 0.8277,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.21459
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"goalAssist": 1,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 20,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.7884,
"keyPass": 3,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0616025
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 5,
"fouls": 1,
"minutesPlayed": 16,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 16,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.0315,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.135871
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Maroto",
"firstName": "",
"lastName": "",
"slug": "mario-maroto",
"shortName": "M. Maroto",
"position": "M",
"jerseyNumber": "34",
"height": 176,
"userCount": 23,
"id": 1086415,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041379200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.613
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 54,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 101,
"rating": 7.6,
"possessionLostCtrl": 18,
"expectedGoals": 0.02,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.262458
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 95,
"accuratePass": 87,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 104,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0112,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0703069
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 105,
"accuratePass": 95,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 118,
"rating": 7.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0769,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0358927
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0135,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.012762
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 72,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1171,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.220282
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 11,
"totalContest": 7,
"wonContest": 6,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 71,
"rating": 8.3,
"possessionLostCtrl": 18,
"expectedGoals": 0.1643,
"keyPass": 1,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.187338
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0298,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.33582
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 86,
"accuratePass": 80,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 12,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 112,
"rating": 7.6,
"possessionLostCtrl": 17,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.191589
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 2,
"dispossessed": 1,
"interceptionWon": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 61,
"touches": 37,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0274822
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"goalAssist": 1,
"aerialLost": 4,
"duelLost": 6,
"dispossessed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.1893,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0395847
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.2584,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0680042
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 25,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1259,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.021728
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 19,
"totalLongBalls": 24,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.5,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.0212
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.3717,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00677216
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 20,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 6,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 4,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 8,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 10,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 83,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 19,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0141959
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Pablo Barrios",
"firstName": "",
"lastName": "",
"slug": "pablo-barrios",
"shortName": "P. Barrios",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 3128,
"id": 1142588,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055635200,
"proposedMarketValueRaw": {
"value": 33000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0628\u0627\u0631\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0627\u0631\u064a\u0648\u0633"
}
}
},
"teamId": 2836,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 6,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.2,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 4,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00509976
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 25,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0373,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 83,
"touches": 53,
"rating": 7.2,
"possessionLostCtrl": 19,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.278589
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 74,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.1345,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0150588
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 26,
"touches": 17,
"rating": 5.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 5.7,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 3,
"minutesPlayed": 16,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00714888
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00641789
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Ilias Kostis",
"firstName": "",
"lastName": "",
"slug": "ilias-kostis",
"shortName": "I. Kostis",
"position": "D",
"jerseyNumber": "5",
"height": 191,
"userCount": 585,
"id": 1145621,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046304000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thomas Lemar",
"firstName": "",
"lastName": "",
"slug": "thomas-lemar",
"shortName": "T. Lemar",
"position": "M",
"jerseyNumber": "11",
"height": 170,
"userCount": 3268,
"id": 191182,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 816134400,
"proposedMarketValueRaw": {
"value": 7700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 19,
"totalLongBalls": 26,
"accurateLongBalls": 8,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"lastManTackle": 1,
"totalTackle": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.6,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.5805
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.0134,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 53,
"totalLongBalls": 16,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 4,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.8,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 36,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 89,
"touches": 53,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00575823
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"totalClearance": 4,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 79,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00616103
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 32,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 72,
"touches": 57,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0128,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0164726
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0776,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.125122
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 3,
"goals": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.7,
"possessionLostCtrl": 17,
"expectedGoals": 1.1276,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0446615
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 79,
"touches": 30,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0199,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.010047
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 23,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 5,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 44,
"rating": 7.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0221,
"keyPass": 3,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.122287
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 6,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 72,
"touches": 23,
"rating": 6.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.1541,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0621664
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 5,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 20,
"rating": 7.1,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 18,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.0147,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 9,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 4,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 36,
"rating": 7.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": -0.2146
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 41,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 3,
"totalContest": 2,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.5,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.368759
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 49,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.4,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0141049
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 43,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 6,
"duelLost": 1,
"duelWon": 8,
"blockedScoringAttempt": 1,
"totalClearance": 8,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0362,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 16,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"totalClearance": 5,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 86,
"touches": 41,
"rating": 6.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 9,
"duelWon": 3,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0212,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00783624
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 64,
"touches": 35,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00720159
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.010776
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.2,
"possessionLostCtrl": 19,
"expectedGoals": 0.1482,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.185445
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 79,
"touches": 37,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.0367,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0329478
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 5,
"onTargetScoringAttempt": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 64,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.2364,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0119227
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00537173
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"totalContest": 1,
"totalOffside": 1,
"minutesPlayed": 26,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0999,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 4,
"shotOffTarget": 1,
"fouls": 2,
"minutesPlayed": 12,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.0308,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Bartra",
"slug": "marc-bartra",
"shortName": "M. Bartra",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 1069,
"id": 99519,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 663897600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u062a\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0628\u0627\u0631\u062a\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 19,
"accurateLongBalls": 15,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 5,
"saves": 6,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 8.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.00960109,
"goalsPrevented": 1.121
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.2,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0104582
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 3,
"fouls": 2,
"minutesPlayed": 67,
"touches": 15,
"rating": 6.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.0711,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0107563
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.2,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.025,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0868986
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0596,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0134203
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 2,
"shotOffTarget": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 78,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 14,
"expectedGoals": 0.0964,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0119004
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 4,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 18,
"expectedGoals": 0.0785,
"keyPass": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.166362
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 57,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0624,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0233075
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.1,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.105264
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 57,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0929,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 3,
"totalOffside": 2,
"minutesPlayed": 33,
"touches": 14,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0281,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0413478
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalOffside": 2,
"minutesPlayed": 33,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.2222,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 23,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Hugo Novoa Ramos",
"firstName": "",
"lastName": "",
"slug": "hugo-novoa-ramos",
"shortName": "H. N. Ramos",
"position": "M",
"jerseyNumber": "16",
"height": 182,
"userCount": 346,
"id": 1001967,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1043366400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 51,
"totalLongBalls": 18,
"accurateLongBalls": 8,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 3,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 4,
"accurateKeeperSweeper": 4,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.3654
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 62,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 67,
"touches": 79,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0132454
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 117,
"accuratePass": 111,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 2,
"totalClearance": 6,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 128,
"rating": 7.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0111124
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 95,
"accuratePass": 91,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 4,
"bigChanceCreated": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 3,
"minutesPlayed": 81,
"touches": 103,
"rating": 7.5,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0641028
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 81,
"touches": 40,
"rating": 7.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0200542
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 75,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 94,
"rating": 7.2,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0350791
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.2,
"possessionLostCtrl": 17,
"expectedGoals": 0.2931,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.132955
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 5,
"totalContest": 7,
"wonContest": 4,
"blockedScoringAttempt": 1,
"interceptionWon": 3,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 67,
"touches": 33,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0277,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0850726
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 2,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 3,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 47,
"rating": 8.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.6102,
"keyPass": 6,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 1.11934
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 6,
"touches": 1,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 17,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 5,
"blockedScoringAttempt": 1,
"goals": 3,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 9.8,
"possessionLostCtrl": 14,
"expectedGoals": 1.6639,
"ratingVersions": {
"original": 9.8,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 55,
"accuratePass": 51,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 84,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0195,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.05067
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 28,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0134108
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"hitWoodwork": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 23,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.1481,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0114257
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 9,
"touches": 8,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Frenkie de Jong",
"slug": "frenkie-de-jong",
"shortName": "F. de Jong",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 124538,
"id": 795222,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 863395200,
"proposedMarketValueRaw": {
"value": 56000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u064a\u0648\u0646\u062c, \u0641\u0631\u064a\u0646\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u064a\u0648\u0646\u062c"
}
}
},
"teamId": 2817,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 9,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "\u00c1ron Yaakobishvili",
"firstName": "\u00c1ron Yaakobishvili",
"slug": "aron-yaakobishvili",
"shortName": "\u00c1. Yaakobishvili",
"position": "G",
"jerseyNumber": "41",
"height": 185,
"userCount": 3136,
"id": 1402902,
"country": {
"alpha2": "HU",
"alpha3": "HUN",
"name": "Hungary",
"slug": "hungary"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1141603200,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 10,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"penaltySave": 2,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 8.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"goalsPrevented": 1.4162
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 77,
"accuratePass": 74,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 4,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 3,
"minutesPlayed": 89,
"touches": 95,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0217184
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 94,
"accuratePass": 79,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 105,
"rating": 7.2,
"possessionLostCtrl": 16,
"expectedGoals": 0.0654,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0294137
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 71,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.2437,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0105517
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 43,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1169,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.381372
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 68,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 89,
"touches": 85,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0330332
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 48,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 10,
"duelWon": 16,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 6,
"wasFouled": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.1779,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0179304
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 43,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 89,
"touches": 87,
"rating": 8.4,
"possessionLostCtrl": 26,
"expectedGoals": 0.0678,
"keyPass": 4,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.806084
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.0989,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.626731
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 59,
"touches": 26,
"rating": 5.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.3182,
"keyPass": 1,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.0698239
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0701808
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0457678
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"outfielderBlock": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 1
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 10,
"touches": 1,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"minutesPlayed": 10,
"touches": 2,
"rating": 6.9,
"expectedGoals": 0.9103,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 17,
"totalLongBalls": 25,
"accurateLongBalls": 14,
"goalAssist": 0,
"errorLeadToAGoal": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"totalKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": -0.0273
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0451,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00899309
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 78,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"minutesPlayed": 43,
"touches": 27,
"rating": 7.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.6477,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.179931
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 59,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0360383
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 30,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 79,
"touches": 48,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.8526,
"penaltyMiss": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0108273
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.7,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.12494
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 2,
"totalClearance": 1,
"minutesPlayed": 59,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.2417,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.019422
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.9596,
"keyPass": 2,
"penaltyMiss": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.409597
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 47,
"touches": 16,
"rating": 6.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.2969,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 11,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 31,
"touches": 12,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.207202
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 31,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"minutesPlayed": 12,
"touches": 12,
"rating": 6.5,
"expectedGoals": 0.0601,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0391522
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 10,
"rating": 6.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0122185
},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Oier Gastesi",
"slug": "oier-gastesi",
"shortName": "O. Gastesi",
"position": "G",
"jerseyNumber": "1",
"height": 190,
"userCount": 27,
"id": 1391376,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1067472000,
"proposedMarketValueRaw": {
"value": 160000,
"currency": "EUR"
}
},
"teamId": 24324,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Peio Canales",
"firstName": "Peio Canales",
"slug": "peio-canales",
"shortName": "P. Canales",
"position": "M",
"jerseyNumber": "18",
"height": 175,
"userCount": 88,
"id": 1464648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105920000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24324,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 3,
"wasFouled": 1,
"saves": 1,
"punches": 3,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0143
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Carvajal",
"slug": "daniel-carvajal",
"shortName": "D. Carvajal",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 89435,
"id": 138572,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 695088000,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
}
}
},
"teamId": 2829,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 62,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 5,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 85,
"rating": 7.5,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0358507
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 48,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00567078
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 61,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.2,
"possessionLostCtrl": 1,
"expectedGoals": 0.1564,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00749969
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 54,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00998784
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 86,
"accuratePass": 76,
"totalLongBalls": 10,
"accurateLongBalls": 7,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 102,
"rating": 8.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0547,
"keyPass": 3,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.214044
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 77,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 1,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 89,
"rating": 8.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0203,
"keyPass": 3,
"ratingVersions": {
"original": 8.8,
"alternative": null
},
"expectedAssists": 0.047381
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 61,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 70,
"touches": 82,
"rating": 7.2,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0417705
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 59,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.085,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0693992
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 71,
"touches": 37,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0764,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0858518
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 79,
"touches": 52,
"rating": 8.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0759,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0484062
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 20,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 19,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 2,
"totalTackle": 2,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jacobo Naveros",
"firstName": "",
"lastName": "",
"slug": "jacobo-naveros",
"shortName": "J. Naveros",
"position": "D",
"jerseyNumber": "31",
"height": 188,
"userCount": 1820,
"id": 1403348,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1104969600,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"goodHighClaim": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 25,
"rating": 6.1,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"goalsPrevented": -1.5338
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 59,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 84,
"rating": 6.9,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0236823
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"minutesPlayed": 68,
"touches": 39,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 49,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"outfielderBlock": 2,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00828573
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 86,
"touches": 46,
"rating": 6.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0477167
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 64,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 10,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 85,
"rating": 6.6,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0281615
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 64,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 5,
"dispossessed": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 79,
"touches": 72,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0237271
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.1587,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.231179
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 31,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"totalOffside": 1,
"minutesPlayed": 68,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.1961,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0468183
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 3,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.6973,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00954145
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 4,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"fouls": 2,
"minutesPlayed": 68,
"touches": 37,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.0533,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.109541
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 22,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00665158
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 22,
"touches": 15,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.0181,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.381257
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"duelWon": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 22,
"touches": 15,
"rating": 7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 11,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.0295,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00677409
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 3,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 14,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 12,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 3,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.1506
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 43,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0935399
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 54,
"accuratePass": 46,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 75,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00774244
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 42,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.2349,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00945994
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 58,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 58,
"touches": 36,
"rating": 7.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.0203,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0351325
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 78,
"accuratePass": 74,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 12,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 96,
"rating": 8.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0696,
"keyPass": 1,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.135975
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 25,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 17,
"accurateCross": 7,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 7.5,
"possessionLostCtrl": 27,
"expectedGoals": 0.2116,
"keyPass": 4,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.402236
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.1717,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0107902
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 41,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 3,
"totalContest": 5,
"wonContest": 4,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"totalClearance": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.3366,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.133914
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.022,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0230287
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 32,
"accuratePass": 30,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 32,
"touches": 44,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0291,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.131153
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 29,
"accuratePass": 26,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 32,
"touches": 43,
"rating": 7.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.1106,
"keyPass": 5,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.240696
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 4,
"totalContest": 1,
"minutesPlayed": 23,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.061727
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 23,
"touches": 2,
"rating": 6.2,
"expectedGoals": 0.13,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 34,
"rating": 7.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0342,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.063778
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alvaro Killane",
"firstName": "\u00c1lvaro Killane",
"lastName": "",
"slug": "killane-alvaro",
"shortName": "\u00c1. Killane",
"position": "G",
"jerseyNumber": "30",
"height": 186,
"userCount": 61,
"id": 1402668,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1102982400
},
"teamId": 24369,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Daley Sinkgraven",
"slug": "daley-sinkgraven",
"shortName": "D. Sinkgraven",
"position": "D",
"jerseyNumber": "22",
"height": 179,
"userCount": 274,
"id": 377206,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Valentin Pezzolesi",
"slug": "valentin-pezzolesi",
"shortName": "V. Pezzolesi",
"position": "D",
"jerseyNumber": "27",
"userCount": 47,
"id": 1893819,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1176681600
},
"teamId": 24369,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 14,
"totalLongBalls": 25,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"punches": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 8.3,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"goalsPrevented": 0.9067
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 61,
"touches": 31,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0120219
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 10,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.3,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 65,
"rating": 7.5,
"possessionLostCtrl": 17,
"expectedGoals": 0.0771,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.282841
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 41,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 3,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.0062,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0167882
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 3,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 54,
"touches": 39,
"rating": 5.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.0162,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.0292752
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 6,
"wonContest": 4,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 79,
"touches": 63,
"rating": 7,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0541956
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 56,
"touches": 34,
"rating": 6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0352945
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 24,
"rating": 7.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.5153,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 3,
"totalContest": 1,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0124389
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 10,
"rating": 6.9,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 28,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 11,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 28,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.1457,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 2,
"interceptionWon": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalClearance": 4,
"minutesPlayed": 1,
"touches": 5,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.6739
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 16,
"keyPass": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.218517
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 19,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.2332,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 53,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00560425
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0432,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.1116,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00972541
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"shotOffTarget": 1,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0451,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 8,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 83,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 1.1756,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0266882
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 68,
"touches": 23,
"rating": 7.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0752,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0131225
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.014845
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.245026
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 7,
"accurateCross": 3,
"duelLost": 1,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 30,
"rating": 7.7,
"possessionLostCtrl": 10,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.618129
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.1593,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0274848
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Anuar",
"slug": "anuar",
"shortName": "Anuar",
"position": "M",
"jerseyNumber": "23",
"height": 172,
"userCount": 753,
"id": 601962,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790128000,
"proposedMarketValueRaw": {
"value": 945000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0646\u0648\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 22,
"touches": 11,
"rating": 6.7,
"expectedGoals": 0.0167,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.225802
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 13,
"touches": 8,
"rating": 7,
"expectedGoals": 0.1272,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0141444
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Alvaro Aceves Catalina",
"firstName": "",
"lastName": "",
"slug": "alvaro-aceves-catalina",
"shortName": "A. A. Catalina",
"position": "G",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1112734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1059177600,
"proposedMarketValueRaw": {
"value": 580000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u064a\u0641\u064a\u0633 \u060c \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u0644\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 24361,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 17,
"totalLongBalls": 16,
"accurateLongBalls": 9,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.2433
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 28,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.3,
"possessionLostCtrl": 18,
"expectedGoals": 0.1793,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0220538
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 58,
"totalLongBalls": 10,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 8,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0275,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0107053
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 52,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0688,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00888235
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 39,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00969302
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 8.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.7689,
"ratingVersions": {
"original": 8.6,
"alternative": null
},
"expectedAssists": 0.0382786
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 63,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0158663
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 59,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 83,
"touches": 77,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0339,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.071741
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 63,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.0198,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.277533
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 77,
"touches": 51,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.1132,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0837369
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 77,
"touches": 30,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0447,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0162541
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 4,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 19,
"rating": 7.1,
"possessionLostCtrl": 5,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.529205
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 27,
"touches": 27,
"rating": 7.1,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00740257
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 3,
"blockedScoringAttempt": 1,
"minutesPlayed": 13,
"touches": 17,
"rating": 7.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.1909,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0708032
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 13,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.1273,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 8,
"rating": 6.8,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.160114
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Marco de las Sias",
"slug": "marco-de-las-sias",
"shortName": "M. d. l. S\u00edas",
"position": "D",
"jerseyNumber": "26",
"userCount": 26,
"id": 1893146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1135814400
},
"teamId": 43756,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 9,
"totalLongBalls": 19,
"accurateLongBalls": 8,
"goalAssist": 0,
"saves": 1,
"minutesPlayed": 90,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.4896
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 3,
"totalClearance": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.127382
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 7,
"totalClearance": 11,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 83,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 18,
"totalLongBalls": 12,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 7,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0934,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0112128
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 10,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.5,
"possessionLostCtrl": 27,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.082354
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 6,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0795,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0157953
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 9,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 5,
"duelLost": 7,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.6,
"possessionLostCtrl": 20,
"expectedGoals": 0.0718,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00603992
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0173,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.333044
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 9,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.1068,
"keyPass": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.447786
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.3862,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0468,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.019945
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 3,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0233278
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Borja Mayoral",
"firstName": "",
"lastName": "",
"slug": "borja-mayoral",
"shortName": "B. Mayoral",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2825,
"id": 604954,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860198400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
}
}
},
"teamId": 2859,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0107377
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 3,
"totalTackle": 1,
"minutesPlayed": 16,
"touches": 13,
"rating": 6.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.013362
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 16,
"touches": 13,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0249,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0110293
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"totalLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 30,
"totalLongBalls": 17,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.4235
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 12,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 4,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 6,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.7,
"possessionLostCtrl": 29,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0916136
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 32,
"totalLongBalls": 14,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 9,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.1,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 37,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 11,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 7,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 15,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 16,
"expectedGoals": 0.0146,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.134636
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 15,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 7,
"aerialWon": 6,
"duelLost": 10,
"duelWon": 15,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.9,
"possessionLostCtrl": 19,
"expectedGoals": 0.1453,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0184342
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 79,
"touches": 39,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0121215
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 58,
"touches": 34,
"rating": 6.9,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0307637
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 8,
"aerialWon": 5,
"duelLost": 12,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.1024,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0332537
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 3,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 79,
"touches": 29,
"rating": 7.3,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0101295
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 32,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0769,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 12,
"totalLongBalls": 19,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 1.576
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.9,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 8,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 9,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 9,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 8.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.5547,
"ratingVersions": {
"original": 8.4,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0246,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0616327
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 5,
"duelWon": 13,
"challengeLost": 1,
"totalClearance": 5,
"totalTackle": 6,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00660338
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 75,
"touches": 40,
"rating": 7,
"possessionLostCtrl": 9,
"keyPass": 3,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0985147
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 5,
"fouls": 2,
"minutesPlayed": 83,
"touches": 37,
"rating": 8.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.1648,
"keyPass": 2,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.556055
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0153,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0565744
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 55,
"touches": 21,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.1173,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0435545
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"wasFouled": 3,
"minutesPlayed": 83,
"touches": 22,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0563,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.012229
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 35,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 6,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 19,
"touches": 8,
"rating": 6.8,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 2,
"errorLeadToAShot": 1,
"minutesPlayed": 18,
"touches": 5,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Rafael Bauza",
"firstName": "Rafael Bauza",
"slug": "rafael-bauza",
"shortName": "R. Bauza",
"position": "M",
"jerseyNumber": "35",
"height": 183,
"userCount": 32,
"id": 1841365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1107043200,
"proposedMarketValueRaw": {
"value": 145000,
"currency": "EUR"
}
},
"teamId": 37055,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0059092,
"goalsPrevented": -0.8614
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 5,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.2,
"possessionLostCtrl": 20,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.282562
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 49,
"accuratePass": 39,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 5,
"aerialWon": 8,
"duelLost": 10,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 5,
"interceptionWon": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 68,
"rating": 8.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.8429,
"keyPass": 2,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.182981
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 56,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 7,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0142804
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 61,
"touches": 49,
"rating": 5.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.1343,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.00759868
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 61,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0088585
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 50,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 80,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0128745
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 45,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 11,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 6,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.0183,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0145813
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"minutesPlayed": 61,
"touches": 34,
"rating": 6.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0142,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0148033
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 3,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00560546
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 15,
"duelWon": 3,
"dispossessed": 5,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.2219,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 3,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 32,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.144034
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"challengeLost": 1,
"dispossessed": 1,
"minutesPlayed": 29,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0490449
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 24,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.1008,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0225636
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 29,
"touches": 6,
"rating": 6.3,
"possessionLostCtrl": 3,
"expectedGoals": 0.3972,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 10,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0793,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 15,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.1,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.1825
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.0952,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0132559
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 90,
"accuratePass": 78,
"totalLongBalls": 17,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 9,
"dispossessed": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 104,
"rating": 7.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0132537
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 79,
"accuratePass": 73,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 5,
"duelWon": 6,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 34,
"totalLongBalls": 5,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.9,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0160444
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 51,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 70,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0145198
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 49,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 84,
"touches": 64,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0233,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0383576
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 84,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 14,
"expectedGoals": 0.0262,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.213009
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 37,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.3801,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.110724
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0286711
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalOffside": 3,
"minutesPlayed": 63,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 10,
"expectedGoals": 0.0584,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0154671
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 2,
"shotOffTarget": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0822,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 19,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00668351
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 9,
"touches": 7,
"rating": 6.8,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0296511
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 10,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.1257,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 16,
"totalLongBalls": 18,
"accurateLongBalls": 4,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0143289
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 27,
"totalLongBalls": 15,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.0123,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 42,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 32,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.2,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0187666
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 14,
"totalLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 6,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 17,
"expectedGoals": 0.0438,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00621414
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 63,
"touches": 29,
"rating": 6.4,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00663778
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 52,
"accuratePass": 41,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.8,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0784616
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 73,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0170605
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 86,
"touches": 30,
"rating": 6.8,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.216101
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 6,
"duelLost": 10,
"duelWon": 10,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 73,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0706,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0159844
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 12,
"rating": 7.1,
"possessionLostCtrl": 2,
"expectedGoals": 0.0897,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.126442
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 17,
"touches": 16,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 2,
"expectedGoals": 0.3223,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 4,
"touches": 2
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Rodrigo Abajas",
"slug": "rodrigo-abajas",
"shortName": "R. Abajas",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 23,
"id": 1657026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1070582400,
"proposedMarketValueRaw": {
"value": 94000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
}
]
[
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"totalTackle": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": -0.5565
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 52,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 3,
"totalTackle": 6,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0135,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0823438
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 39,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 2,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.1,
"possessionLostCtrl": 5,
"expectedGoals": 0.2216,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00584972
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 48,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0555119
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 87,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.1243,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.199374
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 8,
"totalContest": 5,
"wonContest": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 77,
"touches": 56,
"rating": 7.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.1778,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.202052
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 67,
"accuratePass": 60,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 73,
"rating": 7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0501843
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 38,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 77,
"touches": 58,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.048,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0339906
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 7.1,
"possessionLostCtrl": 3,
"expectedGoals": 0.0781,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.101993
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 88,
"touches": 44,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.5518,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0520355
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 2,
"totalOffside": 4,
"minutesPlayed": 90,
"touches": 18,
"rating": 8.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.5243,
"keyPass": 3,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.210373
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"hitWoodwork": 1,
"goals": 1,
"interceptionWon": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 41,
"rating": 8.6,
"possessionLostCtrl": 10,
"expectedGoals": 1.05,
"keyPass": 2,
"penaltyMiss": 1,
"ratingVersions": {
"original": 8.6,
"alternative": null
},
"expectedAssists": 0.970864
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"duelWon": 3,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 21,
"rating": 7.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 13,
"touches": 2,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0179427
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Etta Eyong",
"firstName": "Etta Eyong",
"lastName": "",
"slug": "etta-eyong",
"shortName": "E. Eyong",
"position": "F",
"jerseyNumber": "36",
"height": 181,
"userCount": 188,
"id": 1393673,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1072915200,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 36,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"penaltyConceded": 1,
"fouls": 1,
"savedShotsFromInsideTheBox": 3,
"penaltySave": 1,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": -0.6946
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 63,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0526,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 83,
"accuratePass": 82,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 99,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 81,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 104,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00703973
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 78,
"touches": 61,
"rating": 6.4,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0598969
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 4,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 77,
"touches": 51,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0184,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.168716
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 52,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 3,
"minutesPlayed": 86,
"touches": 61,
"rating": 6.2,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0136036
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 64,
"accuratePass": 60,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 62,
"touches": 70,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0327551
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 38,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0483,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.729979
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 3,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 62,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.0328,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00711011
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.6758,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00716704
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 2,
"minutesPlayed": 28,
"touches": 20,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0272,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0263236
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"minutesPlayed": 28,
"touches": 33,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00576131
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 32,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00510843
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 12,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"wasFouled": 1,
"minutesPlayed": 14,
"touches": 2,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alvaro Killane",
"firstName": "\u00c1lvaro Killane",
"lastName": "",
"slug": "killane-alvaro",
"shortName": "\u00c1. Killane",
"position": "G",
"jerseyNumber": "30",
"height": 186,
"userCount": 61,
"id": 1402668,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1102982400
},
"teamId": 24369,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Daley Sinkgraven",
"slug": "daley-sinkgraven",
"shortName": "D. Sinkgraven",
"position": "D",
"jerseyNumber": "22",
"height": 179,
"userCount": 274,
"id": 377206,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Iv\u00e1n Gil",
"slug": "ivan-gil",
"shortName": "I. Gil",
"position": "M",
"jerseyNumber": "21",
"height": 168,
"userCount": 110,
"id": 1010525,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948153600,
"proposedMarketValueRaw": {
"value": 930000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": -0.4905
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 28,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00882044
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 52,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"totalClearance": 6,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00656668
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 58,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"duelWon": 4,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 47,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"totalContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 68,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00851957
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 56,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 7.1,
"possessionLostCtrl": 18,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.120006
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 44,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"lastManTackle": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0318,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0473177
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 44,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 70,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0331,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0109809
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 40,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1138,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.201268
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 45,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.3,
"possessionLostCtrl": 17,
"expectedGoals": 0.0851,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0844278
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 56,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0775,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 49,
"accuratePass": 40,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 55,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0246633
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 34,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.1737,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0818235
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 20,
"touches": 15,
"rating": 7.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.7688,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 15,
"touches": 13,
"rating": 7.5,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.265602
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 15,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0197634
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thomas Lemar",
"firstName": "",
"lastName": "",
"slug": "thomas-lemar",
"shortName": "T. Lemar",
"position": "M",
"jerseyNumber": "11",
"height": 170,
"userCount": 3268,
"id": 191182,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 816134400,
"proposedMarketValueRaw": {
"value": 7700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0645\u0627\u0631, \u062a\u0648\u0645\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 21,
"totalLongBalls": 15,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.5567
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Carvajal",
"slug": "daniel-carvajal",
"shortName": "D. Carvajal",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 89435,
"id": 138572,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 695088000,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
}
}
},
"teamId": 2829,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.2388,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0474652
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 51,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 6,
"outfielderBlock": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 49,
"totalLongBalls": 13,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0281,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.010869
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00828347
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 58,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 4,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0562,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0421467
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 58,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 86,
"touches": 72,
"rating": 7.1,
"possessionLostCtrl": 8,
"keyPass": 3,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.446949
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 56,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 4,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0578,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0200535
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 55,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.195,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0225598
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 89,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0743,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0692558
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 87,
"touches": 48,
"rating": 7.3,
"possessionLostCtrl": 14,
"expectedGoals": 0.0645,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.33149
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"interceptionWon": 1,
"minutesPlayed": 15,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.0498,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0163658
},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Jacobo Naveros",
"firstName": "",
"lastName": "",
"slug": "jacobo-naveros",
"shortName": "J. Naveros",
"position": "D",
"jerseyNumber": "31",
"height": 188,
"userCount": 1820,
"id": 1403348,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1104969600,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Eduardo Camavinga",
"firstName": "",
"lastName": "",
"slug": "camavinga-eduardo",
"shortName": "E. Camavinga",
"position": "M",
"jerseyNumber": "6",
"height": 182,
"userCount": 155041,
"id": 973887,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036886400,
"proposedMarketValueRaw": {
"value": 95000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u062f\u0648\u0627\u0631\u062f\u0648 \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0645\u0627\u0641\u064a\u0646\u062c\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.4711
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelWon": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.4,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.256852
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 51,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0174,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.122553
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 48,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0166,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.157285
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0128299
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 38,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 79,
"touches": 48,
"rating": 7,
"possessionLostCtrl": 3,
"expectedGoals": 0.1271,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0346972
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 42,
"totalLongBalls": 5,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"blockedScoringAttempt": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 78,
"touches": 61,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.0497,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0455627
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 22,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 61,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1298,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0328967
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 52,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 3,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 4,
"goals": 1,
"wasFouled": 7,
"minutesPlayed": 90,
"touches": 91,
"rating": 9,
"possessionLostCtrl": 19,
"expectedGoals": 0.3644,
"keyPass": 4,
"ratingVersions": {
"original": 9,
"alternative": null
},
"expectedAssists": 0.595155
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 2,
"duelLost": 11,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 5,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 3,
"wasFouled": 4,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 88,
"touches": 52,
"rating": 7.2,
"possessionLostCtrl": 22,
"expectedGoals": 1.2296,
"keyPass": 5,
"penaltyMiss": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.199829
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.1052,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0119197
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 29,
"touches": 26,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.2124,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0212283
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 3,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"interceptionWon": 1,
"minutesPlayed": 12,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00807519
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 11,
"touches": 16,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 8,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.011468
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 20,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 3,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 6,
"penaltySave": 1,
"saves": 10,
"punches": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 9.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 9.5,
"alternative": null
},
"goalsPrevented": 1.1711
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 12,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 6,
"interceptionWon": 4,
"totalTackle": 8,
"penaltyConceded": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 71,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 56,
"accuratePass": 50,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.0261,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 52,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 56,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.3121,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0600355
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 68,
"touches": 31,
"rating": 6.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0151,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0134776
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 9,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 6,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0273,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0106714
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 87,
"touches": 58,
"rating": 6.5,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0493819
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"totalContest": 2,
"totalClearance": 1,
"minutesPlayed": 55,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0258384
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0403,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0192529
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 4,
"fouls": 4,
"minutesPlayed": 68,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0275,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00554645
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 35,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0275,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 22,
"touches": 13,
"rating": 6.8,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.136035
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"fouls": 1,
"minutesPlayed": 22,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00607159
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 12,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"minutesPlayed": 12,
"touches": 2,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 14,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 82,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": 0.0583
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 28,
"accuratePass": 17,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 2,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 4,
"minutesPlayed": 71,
"touches": 53,
"rating": 7.4,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0741265
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"hitWoodwork": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00512791
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 22,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00768451
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 11,
"duelWon": 7,
"challengeLost": 3,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0921,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0121582
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 3,
"bigChanceCreated": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.18113
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 39,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.1489,
"keyPass": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.459984
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 59,
"touches": 25,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0689,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0134287
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"minutesPlayed": 71,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.5969,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.117355
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.938,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0241599
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 31,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0167867
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"minutesPlayed": 31,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.1052,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.027636
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 19,
"touches": 18,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Peio Canales",
"firstName": "Peio Canales",
"slug": "peio-canales",
"shortName": "P. Canales",
"position": "M",
"jerseyNumber": "18",
"height": 175,
"userCount": 88,
"id": 1464648,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105920000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24324,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 19,
"touches": 19,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.023,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00559727
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 2,
"totalLongBalls": 2,
"goalAssist": 0,
"ownGoals": 1,
"saves": 2,
"minutesPlayed": 13,
"touches": 5,
"rating": 6.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.7756
},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 27,
"totalLongBalls": 17,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": 0.3512
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 9,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 78,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0177,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0131091
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 73,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 6,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"lastManTackle": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 99,
"rating": 7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0119056
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 63,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 6,
"interceptionWon": 4,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 83,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0112894
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 34,
"rating": 6.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 45,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 86,
"touches": 70,
"rating": 6.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0637,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0332067
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 44,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0503,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0399395
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 25,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.6376,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0479777
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 10,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 28,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.079,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0124642
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 5,
"totalContest": 8,
"wonContest": 6,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 7.4,
"possessionLostCtrl": 18,
"expectedGoals": 0.1658,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0434676
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"totalOffside": 2,
"minutesPlayed": 59,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00859875
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 31,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.1433,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0401428
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 10,
"touches": 11,
"rating": 6.7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Mateo Mejia",
"slug": "mateo-mejia",
"shortName": "M. Mejia",
"position": "M",
"jerseyNumber": "9",
"height": 188,
"userCount": 317,
"id": 1134538,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049068800,
"proposedMarketValueRaw": {
"value": 410000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"wasFouled": 1,
"minutesPlayed": 10,
"touches": 2,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 12,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Mat\u00edas \u00c1rbol",
"firstName": "",
"lastName": "",
"slug": "matias-arbol",
"shortName": "M. \u00c1rbol",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 26,
"id": 1192489,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031788800,
"proposedMarketValueRaw": {
"value": 96000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Manu Bueno",
"slug": "bueno-manu",
"shortName": "M. Bueno",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 140,
"id": 1142094,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090886400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Bueno Sebastian, Manuel"
},
"shortNameTranslation": {
"ar": "M. B. Sebastian"
}
}
},
"teamId": 7762,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 2,
"minutesPlayed": 90,
"touches": 33,
"rating": 7.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.5204
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00719595
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 63,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.0895,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00774485
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 76,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0434,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0947942
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0200873
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 26,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 65,
"touches": 44,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0938,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0487962
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 61,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 4,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0181,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.230104
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 54,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.1,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.16599
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 23,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0591,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0547641
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 58,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.03359
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"minutesPlayed": 58,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0271675
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0392,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.107783
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"minutesPlayed": 32,
"touches": 22,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0213,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0975627
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 32,
"touches": 9,
"rating": 6.9,
"possessionLostCtrl": 1,
"expectedGoals": 0.0147,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 29,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 25,
"touches": 33,
"rating": 7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0516796
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 25,
"touches": 22,
"rating": 7.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0752,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0241807
},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jailson",
"firstName": "",
"lastName": "",
"slug": "jailson",
"shortName": "Jailson",
"position": "M",
"jerseyNumber": "16",
"height": 187,
"userCount": 515,
"id": 794861,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 810432000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Celta Vigo"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.44
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 56,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 96,
"rating": 7,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0163496
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 67,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"minutesPlayed": 54,
"touches": 72,
"rating": 7.4,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.392791
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 83,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 103,
"rating": 7.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0335,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00992107
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 51,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0554862
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 72,
"accuratePass": 68,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.2,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0339332
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 14,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.177215
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 4,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0666,
"keyPass": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.532982
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 36,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 72,
"touches": 59,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.386,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0178981
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0875,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.08112
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 16,
"rating": 6.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.0633,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"challengeLost": 1,
"totalClearance": 3,
"fouls": 3,
"minutesPlayed": 76,
"touches": 42,
"rating": 6.7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.141124
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 36,
"touches": 32,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"minutesPlayed": 18,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.1262,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00915448
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0328,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00579088
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 18,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00953506
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 22,
"accuratePass": 8,
"totalLongBalls": 21,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 3,
"errorLeadToAGoal": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 30,
"rating": 6.2,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.5923
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 17,
"expectedGoals": 0.0217,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0377265
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 7,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 2,
"totalClearance": 10,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 84,
"touches": 35,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.0156,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0219603
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 1,
"duelLost": 10,
"duelWon": 1,
"challengeLost": 4,
"dispossessed": 2,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"outfielderBlock": 1,
"interceptionWon": 6,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.0639,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.116716
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 24,
"totalLongBalls": 13,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 7,
"duelWon": 12,
"dispossessed": 3,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 6,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.2,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0742275
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 24,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0177235
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"totalOffside": 2,
"minutesPlayed": 59,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0296,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 4,
"dispossessed": 3,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"wasFouled": 1,
"fouls": 1,
"penaltyWon": 1,
"totalOffside": 3,
"minutesPlayed": 77,
"touches": 25,
"rating": 8.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.9879,
"ratingVersions": {
"original": 8.4,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 77,
"touches": 31,
"rating": 8,
"possessionLostCtrl": 11,
"expectedGoals": 0.9693,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.350489
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 1,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 31,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0605833
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 13,
"touches": 12,
"rating": 7.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0611,
"ratingVersions": {
"original": 7.6,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"onTargetScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.7,
"expectedGoals": 0.0798,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"totalClearance": 2,
"minutesPlayed": 13,
"touches": 4,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 3,
"rating": 6.1,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Dimitrios Stamatakis",
"slug": "stamatakis-dimitrios",
"shortName": "D. Stamatakis",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 89,
"id": 1163077,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051056000,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24328,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 4,
"accurateKeeperSweeper": 4,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"goalsPrevented": -1.109
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 62,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 99,
"rating": 6.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0332,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.334354
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 90,
"accuratePass": 86,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 4,
"interceptionWon": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 85,
"touches": 95,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.016704
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 97,
"accuratePass": 88,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 101,
"rating": 6.4,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0887129
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"totalClearance": 2,
"interceptionWon": 1,
"minutesPlayed": 70,
"touches": 54,
"rating": 6.5,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0627295
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 49,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0804686
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 70,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0133,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.292793
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 75,
"accuratePass": 63,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 98,
"rating": 7.2,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0836222
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.2337,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0674833
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 70,
"touches": 23,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.3596,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.030884
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 59,
"touches": 43,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0419,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00739038
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 4,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 31,
"touches": 35,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.1002,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.155245
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 31,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0278,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0699051
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 20,
"touches": 23,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00649007
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 20,
"touches": 28,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0203,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0252766
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 12,
"touches": 10,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00679491
},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "\u00c1ron Yaakobishvili",
"firstName": "\u00c1ron Yaakobishvili",
"slug": "aron-yaakobishvili",
"shortName": "\u00c1. Yaakobishvili",
"position": "G",
"jerseyNumber": "41",
"height": 185,
"userCount": 3136,
"id": 1402902,
"country": {
"alpha2": "HU",
"alpha3": "HUN",
"name": "Hungary",
"slug": "hungary"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1141603200,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Andr\u00e9s Cuenca",
"firstName": "Andr\u00e9s Cuenca",
"slug": "andres-cuenca",
"shortName": "A. Cuenca",
"position": "D",
"jerseyNumber": "27",
"height": 181,
"userCount": 4193,
"id": 1503832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1181520000,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Toni Fern\u00e1ndez",
"slug": "toni-fernandez",
"shortName": "T. Fern\u00e1ndez",
"position": "F",
"jerseyNumber": "42",
"height": 186,
"userCount": 3646,
"id": 1590761,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1216080000,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 18,
"accurateLongBalls": 12,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 0.1614
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 38,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelWon": 13,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 11,
"minutesPlayed": 85,
"touches": 81,
"rating": 8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0857,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.00521059
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 48,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 4,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.1,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 68,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.473,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00835215
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 45,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"bigChanceCreated": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.3,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.617836
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 49,
"totalLongBalls": 10,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalTackle": 6,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.4,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0207797
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 4,
"dispossessed": 4,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 85,
"touches": 51,
"rating": 7.2,
"possessionLostCtrl": 16,
"expectedGoals": 0.7562,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0688755
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.130166
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 53,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 2,
"totalCross": 6,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 9.2,
"possessionLostCtrl": 15,
"keyPass": 6,
"ratingVersions": {
"original": 9.2,
"alternative": null
},
"expectedAssists": 1.04163
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 2,
"minutesPlayed": 60,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.1076,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0129309
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 61,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 30,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.2893,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0178047
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 3,
"goals": 2,
"totalOffside": 2,
"minutesPlayed": 29,
"touches": 11,
"rating": 8.1,
"possessionLostCtrl": 2,
"expectedGoals": 1.7774,
"ratingVersions": {
"original": 8.1,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 12,
"rating": 7.2,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.659594
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"minutesPlayed": 9,
"touches": 8,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 5,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 15,
"rating": 7.2,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.123504
},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Sociedad"
},
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 11,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.1149
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 15,
"expectedGoals": 0.0082,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0232481
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 31,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 5.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.5876,
"ratingVersions": {
"original": 5.8,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 32,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.0241,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0110342
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 37,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 21,
"rating": 6.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00623887
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 77,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0178,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.117455
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 77,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.0202,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.196684
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.3,
"possessionLostCtrl": 14,
"expectedGoals": 0.0222,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0075471
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 1,
"dispossessed": 4,
"totalContest": 2,
"totalTackle": 1,
"minutesPlayed": 62,
"touches": 25,
"rating": 6.2,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0161317
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"duelLost": 11,
"duelWon": 3,
"dispossessed": 4,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.5,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0153027
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"totalContest": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 53,
"touches": 40,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0104394
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"minutesPlayed": 28,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0292,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"blockedScoringAttempt": 1,
"totalOffside": 1,
"minutesPlayed": 28,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.0674,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 10,
"rating": 6.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.2,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 20,
"totalLongBalls": 16,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0875
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 37,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0904,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.016067
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 41,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.0161,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.014283
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 52,
"totalLongBalls": 13,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"totalClearance": 5,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 7,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0403177
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 46,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0398,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0127528
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 53,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.1543,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0105257
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"goalAssist": 0,
"duelLost": 14,
"duelWon": 4,
"challengeLost": 4,
"dispossessed": 4,
"totalContest": 5,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 80,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.1974,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0218072
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 31,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 52,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0379,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.167424
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 18,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.147804
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 27,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.2049,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.170657
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 3,
"minutesPlayed": 27,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0101914
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00792671
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"shotOffTarget": 2,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1693,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0122885
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 2,
"totalContest": 3,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0124909
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"fouls": 1,
"minutesPlayed": 10,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0309476
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Marco de las Sias",
"slug": "marco-de-las-sias",
"shortName": "M. d. l. S\u00edas",
"position": "D",
"jerseyNumber": "26",
"userCount": 26,
"id": 1893146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1135814400
},
"teamId": 43756,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 13,
"totalLongBalls": 22,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 7.8,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 0.3847
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0152,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.137351
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 68,
"accuratePass": 53,
"totalLongBalls": 18,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"interceptionWon": 4,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 7,
"possessionLostCtrl": 16,
"expectedGoals": 0.3638,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00822312
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 6,
"outfielderBlock": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 7.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.100256
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0275,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0267286
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 45,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 80,
"rating": 7.1,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.179917
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 5,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 85,
"touches": 47,
"rating": 7.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.2198,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.0483461
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 43,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 3,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"errorLeadToAGoal": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.6,
"possessionLostCtrl": 17,
"expectedGoals": 0.028,
"keyPass": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.136872
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 74,
"touches": 29,
"rating": 6.9,
"possessionLostCtrl": 2,
"expectedGoals": 0.0954,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0169262
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0845,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0351,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00553805
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 10,
"touches": 4,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 9,
"totalLongBalls": 22,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalClearance": 4,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.2,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.016362,
"goalsPrevented": 0.1777
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 15,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0689173
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 6,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.2005,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 13,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 7,
"duelLost": 9,
"duelWon": 10,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 8,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.3,
"possessionLostCtrl": 13,
"expectedGoals": 0.0329,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0488593
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.4,
"possessionLostCtrl": 20,
"expectedGoals": 0.1544,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.163314
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 31,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.3479,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.23242
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 8,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 5,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 89,
"touches": 28,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0322,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 4,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 8,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 6,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 8.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.7884,
"keyPass": 4,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.211156
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 70,
"touches": 36,
"rating": 6.4,
"possessionLostCtrl": 18,
"expectedGoals": 0.0092,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0105425
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 10,
"duelWon": 16,
"totalContest": 7,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 9,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 44,
"rating": 7.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.4649,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 10,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 74,
"touches": 30,
"rating": 6.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0941,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"goalAssist": 0,
"totalClearance": 2,
"minutesPlayed": 20,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00647154
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Borja Mayoral",
"firstName": "",
"lastName": "",
"slug": "borja-mayoral",
"shortName": "B. Mayoral",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2825,
"id": 604954,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860198400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
}
}
},
"teamId": 2859,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 16,
"touches": 6,
"rating": 6.9,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 2
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lvaro Rodriguez",
"slug": "alvaro-rodriguez",
"shortName": "\u00c1. Rodriguez",
"position": "F",
"jerseyNumber": "18",
"height": 193,
"userCount": 6326,
"id": 1154587,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1089763200,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 4,
"expectedGoals": 0.0832
},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Getafe"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 17,
"totalLongBalls": 26,
"accurateLongBalls": 11,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.364
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 10,
"totalLongBalls": 11,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 7,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.8,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.168961
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 5,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 2,
"totalClearance": 4,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 55,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 4,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 54,
"touches": 22,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 7,
"duelLost": 6,
"duelWon": 14,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 4,
"fouls": 3,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.015846
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 20,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 6,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.1,
"possessionLostCtrl": 22,
"expectedGoals": 0.2156,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0189769
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 9,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 3,
"minutesPlayed": 54,
"touches": 20,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00672643
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 6,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.2,
"possessionLostCtrl": 15,
"expectedGoals": 0.1224,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.126261
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 7,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 11,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.1,
"possessionLostCtrl": 23,
"expectedGoals": 0.1375,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0278136
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 3,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0297267
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 6,
"duelLost": 7,
"duelWon": 8,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"penaltyConceded": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 69,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0341,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 2,
"wonContest": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 36,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 3,
"dispossessed": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 36,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00666783
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"totalContest": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 35,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"minutesPlayed": 21,
"touches": 3,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.7926
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 51,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.166405
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 47,
"totalLongBalls": 12,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 6,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00503872
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 45,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 2,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 72,
"touches": 63,
"rating": 6.9,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 33,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAGoal": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.3,
"possessionLostCtrl": 14,
"keyPass": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.132902
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 65,
"touches": 43,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0693,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0215755
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 36,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 8,
"challengeLost": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.1026,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00992573
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 4,
"minutesPlayed": 65,
"touches": 27,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0672,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00525898
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 3,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.4,
"possessionLostCtrl": 14,
"expectedGoals": 0.154,
"keyPass": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.09308
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 3,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.1895,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.102825
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 51,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.5561,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00758917
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 39,
"touches": 38,
"rating": 6.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 8,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"minutesPlayed": 39,
"touches": 31,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.101,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0277848
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 25,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalTackle": 1,
"minutesPlayed": 25,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Maroto",
"firstName": "",
"lastName": "",
"slug": "mario-maroto",
"shortName": "M. Maroto",
"position": "M",
"jerseyNumber": "34",
"height": 176,
"userCount": 23,
"id": 1086415,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041379200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"minutesPlayed": 18,
"touches": 20,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0260441
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 16,
"totalLongBalls": 26,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 5.9,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"goalsPrevented": -0.124
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 9,
"totalContest": 5,
"wonContest": 4,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.0839,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.120567
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 5,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0393,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 40,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 8,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 7,
"possessionLostCtrl": 11,
"expectedGoals": 0.2417,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.4,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0695417
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 86,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0215,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0251084
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.0228,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00923131
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 50,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 8,
"challengeLost": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0945,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0214391
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 76,
"touches": 53,
"rating": 6.9,
"possessionLostCtrl": 19,
"keyPass": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.198228
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 76,
"touches": 30,
"rating": 7.3,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.304126
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 10,
"duelWon": 3,
"totalContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 22,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.9871,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 25,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 2,
"wasFouled": 2,
"minutesPlayed": 15,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0188,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 14,
"touches": 9,
"rating": 7.4,
"expectedGoals": 0.7528,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 11,
"touches": 9,
"rating": 6.7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sebas Wade",
"firstName": "",
"lastName": "",
"slug": "sebas-wade",
"shortName": "S. Wade",
"position": "D",
"jerseyNumber": "39",
"height": 190,
"userCount": 13,
"id": 1177442,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049846400,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 34997,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.0261
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javier Manquillo",
"slug": "javier-manquillo",
"shortName": "J. Manquillo",
"position": "D",
"jerseyNumber": "22",
"height": 180,
"userCount": 275,
"id": 210082,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768096000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648, \u062e\u0627\u0641\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0646\u0643\u0648\u064a\u064a\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 63,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 70,
"touches": 81,
"rating": 7.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0502816
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 104,
"accuratePass": 100,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 6,
"fouls": 1,
"minutesPlayed": 90,
"touches": 115,
"rating": 7.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0171081
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 105,
"accuratePass": 94,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 4,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 116,
"rating": 7.3,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0418414
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 28,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.3,
"possessionLostCtrl": 6,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.876434
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 88,
"accuratePass": 80,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 7.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.170451
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 77,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 84,
"touches": 87,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0831,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0399075
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 44,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 88,
"rating": 6.5,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0236407
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 30,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 45,
"rating": 7.2,
"possessionLostCtrl": 15,
"expectedGoals": 0.2169,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0728118
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 76,
"touches": 34,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.4846,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0275063
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 70,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.4624,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0408709
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.1797,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.295838
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 10,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.1032,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.137529
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 14,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00517783
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"minutesPlayed": 11,
"touches": 3,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jailson",
"firstName": "",
"lastName": "",
"slug": "jailson",
"shortName": "Jailson",
"position": "M",
"jerseyNumber": "16",
"height": 187,
"userCount": 515,
"id": 794861,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 810432000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 11,
"accurateLongBalls": 7,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 7.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"goalsPrevented": 1.0915
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 42,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 3,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 84,
"touches": 67,
"rating": 6.5,
"possessionLostCtrl": 16,
"expectedGoals": 0.0153,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0218912
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 51,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 66,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0859,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00809943
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 51,
"totalLongBalls": 14,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 4,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0273202
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0052808
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 39,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00868275
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 33,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 2,
"minutesPlayed": 54,
"touches": 37,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00584903
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 36,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 8,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 2,
"totalTackle": 4,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.6,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0289141
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 24,
"rating": 6.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.00642557
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 1,
"totalCross": 7,
"accurateCross": 3,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.5,
"possessionLostCtrl": 24,
"expectedGoals": 0.0573,
"keyPass": 4,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.657055
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 2,
"duelWon": 8,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0567,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0246233
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 36,
"touches": 24,
"rating": 7.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.3471,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.041112
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0554,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00960553
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"minutesPlayed": 26,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0149845
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 11,
"touches": 4,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0063473
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javier Serrano",
"slug": "javier-serrano",
"shortName": "J. Serrano",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 293,
"id": 1019320,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042675200,
"proposedMarketValueRaw": {
"value": 525000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
}
}
},
"teamId": 24326,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 47,
"totalLongBalls": 16,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0612
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 24,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 5,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 6,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.2,
"possessionLostCtrl": 13,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.554177
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 49,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 8,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 71,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 87,
"rating": 7.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Daley Sinkgraven",
"slug": "daley-sinkgraven",
"shortName": "D. Sinkgraven",
"position": "D",
"jerseyNumber": "22",
"height": 179,
"userCount": 274,
"id": 377206,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00605418
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 48,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 74,
"touches": 68,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0148,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0120048
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 44,
"touches": 13,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 42,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 12,
"challengeLost": 2,
"dispossessed": 4,
"shotOffTarget": 1,
"totalClearance": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 63,
"rating": 6,
"possessionLostCtrl": 14,
"expectedGoals": 0.0311,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00656732
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 54,
"accuratePass": 43,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0178,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0186004
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 47,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.3602,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0374719
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 37,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 83,
"touches": 61,
"rating": 7.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.5216,
"keyPass": 2,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.112307
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 46,
"touches": 16,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0249,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0105049
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 15,
"touches": 10,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0297,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 11,
"touches": 13,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Las Palmas"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": 0.0408
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 45,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 7.5,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0975082
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 54,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 7,
"duelLost": 1,
"duelWon": 9,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.9,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00648901
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 44,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"bigChanceCreated": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 7.6,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.492846
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0119,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.108552
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 4,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.3727,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.016315
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 64,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.1932,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0124592
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 39,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.2,
"possessionLostCtrl": 24,
"expectedGoals": 0.0475,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.572448
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 40,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"duelLost": 5,
"duelWon": 13,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 5,
"wasFouled": 6,
"minutesPlayed": 82,
"touches": 71,
"rating": 9,
"possessionLostCtrl": 11,
"expectedGoals": 0.6246,
"keyPass": 3,
"ratingVersions": {
"original": 9,
"alternative": null
},
"expectedAssists": 0.368497
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"wasFouled": 5,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 75,
"touches": 45,
"rating": 6.1,
"possessionLostCtrl": 17,
"expectedGoals": 0.2104,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0486761
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 3,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 64,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.2868,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.372825
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"dispossessed": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"minutesPlayed": 26,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.17,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 15,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0147,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"minutesPlayed": 8,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.5675
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 67,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 97,
"rating": 6.7,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.194141
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 72,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 90,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0110763
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 31,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 1,
"minutesPlayed": 73,
"touches": 43,
"rating": 6.5,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0185586
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"interceptionWon": 1,
"minutesPlayed": 64,
"touches": 43,
"rating": 6.2,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.109836
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"totalContest": 5,
"wonContest": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00592891
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 6,
"fouls": 3,
"minutesPlayed": 73,
"touches": 42,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0199393
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 80,
"touches": 40,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.067,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0133937
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.2151,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0284526
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 72,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 37,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 4,
"duelWon": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 41,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0256855
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 17,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0182,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00713972
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 17,
"touches": 16,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0497,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0102361
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 18,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 10,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0569,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"bigChanceCreated": 1,
"totalClearance": 1,
"goodHighClaim": 5,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.3,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": -0.5635
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.2,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0101468
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 36,
"touches": 25,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 40,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 53,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0196,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00735351
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 11,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 4,
"minutesPlayed": 80,
"touches": 47,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0407,
"keyPass": 3,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.323827
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 37,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 66,
"touches": 47,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.215513
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 44,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.0257,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0572269
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 2,
"totalCross": 4,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 6,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 35,
"rating": 7.6,
"possessionLostCtrl": 11,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.346831
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"goals": 2,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 74,
"touches": 37,
"rating": 8.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.5318,
"ratingVersions": {
"original": 8.6,
"alternative": null
},
"expectedAssists": 0.0150222
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 3,
"shotOffTarget": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 31,
"rating": 5.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.9858,
"keyPass": 1,
"ratingVersions": {
"original": 5.8,
"alternative": null
},
"expectedAssists": 0.012708
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 28,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 5,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 54,
"touches": 40,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"goalAssist": 0,
"interceptionWon": 1,
"minutesPlayed": 24,
"touches": 19,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"minutesPlayed": 24,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 4,
"minutesPlayed": 16,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0159497
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 10,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Cabanes De La Torre",
"firstName": "Pau Cabanes De La Torre",
"slug": "pau-cabanes-de-la-torre",
"shortName": "P. C. D. L. Torre",
"position": "F",
"jerseyNumber": "33",
"height": 179,
"userCount": 66,
"id": 1863206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108598400,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 30,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 4,
"accurateKeeperSweeper": 4,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.2,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.0555
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 54,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 100,
"rating": 8.1,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.214805
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 77,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"bigChanceCreated": 1,
"totalClearance": 4,
"minutesPlayed": 88,
"touches": 88,
"rating": 7.3,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0233049
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 108,
"accuratePass": 101,
"totalLongBalls": 15,
"accurateLongBalls": 11,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 117,
"rating": 7.7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0292175
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 43,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 9,
"totalContest": 6,
"wonContest": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 5,
"minutesPlayed": 88,
"touches": 72,
"rating": 7.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.0627,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.111672
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 59,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.3771,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.126554
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 60,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.1158,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0292623
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 12,
"duelWon": 9,
"dispossessed": 5,
"totalContest": 11,
"wonContest": 5,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.1,
"possessionLostCtrl": 26,
"expectedGoals": 0.0955,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0539062
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 63,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.071078
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 51,
"accuratePass": 42,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"duelLost": 4,
"dispossessed": 1,
"totalContest": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 6.8,
"possessionLostCtrl": 24,
"expectedGoals": 0.6106,
"keyPass": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.194326
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"totalOffside": 3,
"minutesPlayed": 77,
"touches": 23,
"rating": 7.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.6696,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.027037
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 13,
"touches": 12,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00926746
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelWon": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 2,
"touches": 6
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 2,
"touches": 5
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "\u00c1ron Yaakobishvili",
"firstName": "\u00c1ron Yaakobishvili",
"slug": "aron-yaakobishvili",
"shortName": "\u00c1. Yaakobishvili",
"position": "G",
"jerseyNumber": "41",
"height": 185,
"userCount": 3136,
"id": 1402902,
"country": {
"alpha2": "HU",
"alpha3": "HUN",
"name": "Hungary",
"slug": "hungary"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1141603200,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 40,
"jerseyNumber": "40",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Andr\u00e9s Cuenca",
"firstName": "Andr\u00e9s Cuenca",
"slug": "andres-cuenca",
"shortName": "A. Cuenca",
"position": "D",
"jerseyNumber": "27",
"height": 181,
"userCount": 4193,
"id": 1503832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1181520000,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Toni Fern\u00e1ndez",
"slug": "toni-fernandez",
"shortName": "T. Fern\u00e1ndez",
"position": "F",
"jerseyNumber": "42",
"height": 186,
"userCount": 3646,
"id": 1590761,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1216080000,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 5,
"totalLongBalls": 22,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalClearance": 2,
"errorLeadToAGoal": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.3,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": 0.422
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 22,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0137061
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 4,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 3,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"shotOffTarget": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.1,
"possessionLostCtrl": 10,
"expectedGoals": 0.0163,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 3,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 8,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.2,
"possessionLostCtrl": 14,
"expectedGoals": 0.0081,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0390909
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.6,
"possessionLostCtrl": 18,
"expectedGoals": 0.0135,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0331044
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 6,
"challengeLost": 2,
"totalContest": 5,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 4,
"fouls": 4,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.1778,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0194269
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"challengeLost": 1,
"dispossessed": 2,
"outfielderBlock": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0103138
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 63,
"touches": 21,
"rating": 6.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 4,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 30,
"rating": 6.9,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.212332
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 5,
"duelLost": 9,
"duelWon": 2,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"wasFouled": 1,
"totalOffside": 3,
"minutesPlayed": 80,
"touches": 21,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00630198
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 27,
"touches": 14,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Abdoulaye Keita",
"firstName": "Abdoulaye Keita",
"lastName": "",
"slug": "abdoulaye-keita",
"shortName": "A. Keita",
"position": "F",
"jerseyNumber": "36",
"height": 186,
"userCount": 29,
"id": 1168094,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030838400,
"proposedMarketValueRaw": {
"value": 155000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"fouls": 2,
"minutesPlayed": 27,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Borja Mayoral",
"firstName": "",
"lastName": "",
"slug": "borja-mayoral",
"shortName": "B. Mayoral",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2825,
"id": 604954,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860198400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
}
}
},
"teamId": 2859,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 5,
"rating": 6.2,
"possessionLostCtrl": 2,
"expectedGoals": 0.3564,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 10,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.1194,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 3,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Djordjije Medenica",
"firstName": "Djordjije Medenica",
"slug": "djordjije-medenica",
"shortName": "D. Medenica",
"position": "G",
"height": 185,
"userCount": 24,
"id": 1645004,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1163721600
},
"teamId": 375393,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 27,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 70,
"accuratePass": 61,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 106,
"rating": 7.3,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0287964
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 111,
"accuratePass": 99,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 120,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0404,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0241921
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 107,
"accuratePass": 96,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 114,
"rating": 7.5,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0437214
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.2366,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.403355
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.1,
"possessionLostCtrl": 15,
"expectedGoals": 0.0654,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.330204
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 83,
"accuratePass": 77,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 97,
"rating": 7.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0332,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.248513
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 57,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 3,
"dispossessed": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 3,
"totalTackle": 4,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 87,
"rating": 7.2,
"possessionLostCtrl": 15,
"expectedGoals": 0.1466,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.024219
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"totalTackle": 1,
"wasFouled": 3,
"totalOffside": 1,
"minutesPlayed": 67,
"touches": 49,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0200101
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"hitWoodwork": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 75,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.5142,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0958534
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 67,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00511063
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"minutesPlayed": 23,
"touches": 19,
"rating": 7,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.221156
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 4,
"rating": 6.3,
"possessionLostCtrl": 1,
"expectedGoals": 0.9128,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 15,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 1,
"expectedGoals": 0.0577,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0105651
},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Girona FC"
},
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 11,
"totalLongBalls": 13,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.8,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.0907
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 12,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.8,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0112067
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 8,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelWon": 4,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 33,
"touches": 27,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0107841
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0265,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.021012
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 25,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 60,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0112865
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 78,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0137461
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"interceptionWon": 1,
"totalTackle": 4,
"fouls": 2,
"minutesPlayed": 57,
"touches": 24,
"rating": 7,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0881527
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00697591
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 45,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00518056
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 30,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.4406,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
}
]
[
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.4131
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 88,
"accuratePass": 80,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 108,
"rating": 8.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.2214,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0201427
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 101,
"accuratePass": 99,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 109,
"rating": 7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0117127
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 93,
"accuratePass": 87,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 80,
"touches": 106,
"rating": 7.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0215114
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 66,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0193008
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 55,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 5,
"fouls": 1,
"minutesPlayed": 69,
"touches": 72,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0410091
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 64,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0632,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0165061
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 78,
"accuratePass": 69,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 94,
"rating": 7.6,
"possessionLostCtrl": 16,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.216791
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 32,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialWon": 1,
"duelWon": 6,
"totalContest": 3,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"minutesPlayed": 69,
"touches": 52,
"rating": 8.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.0862,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.165937
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 80,
"touches": 48,
"rating": 7.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.6301,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.018302
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 12,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 12,
"wonContest": 4,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 61,
"rating": 6.6,
"possessionLostCtrl": 22,
"expectedGoals": 0.2377,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.266718
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 21,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0214672
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 12,
"rating": 6.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.0834,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"totalClearance": 1,
"minutesPlayed": 10,
"touches": 16,
"rating": 6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 3,
"totalTackle": 2,
"minutesPlayed": 10,
"touches": 10,
"rating": 6.3,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 1,
"touches": 3
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jacobo Naveros",
"firstName": "",
"lastName": "",
"slug": "jacobo-naveros",
"shortName": "J. Naveros",
"position": "D",
"jerseyNumber": "31",
"height": 188,
"userCount": 1820,
"id": 1403348,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1104969600,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "David Jim\u00e9nez",
"slug": "david-jimenez",
"shortName": "D. Jim\u00e9nez",
"position": "M",
"jerseyNumber": "22",
"height": 175,
"userCount": 1231,
"id": 1142689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1079222400,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 9,
"totalLongBalls": 22,
"accurateLongBalls": 8,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 24,
"rating": 6.3,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -1.4595
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 8,
"challengeLost": 4,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 6,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0294374
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.1,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 10,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 31,
"rating": 6.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Hugo Novoa Ramos",
"firstName": "",
"lastName": "",
"slug": "hugo-novoa-ramos",
"shortName": "H. N. Ramos",
"position": "M",
"jerseyNumber": "16",
"height": 182,
"userCount": 346,
"id": 1001967,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1043366400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 7,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.176751
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 47,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 3,
"totalTackle": 3,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0742,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.042875
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 60,
"touches": 46,
"rating": 6.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0142,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0151244
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 21,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 3,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 18,
"expectedGoals": 0.3287,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0781444
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 1,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 60,
"touches": 19,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.0246,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00860182
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0351929
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"dispossessed": 1,
"interceptionWon": 2,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0192605
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"goalAssist": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 30,
"touches": 24,
"rating": 7.2,
"possessionLostCtrl": 2,
"expectedGoals": 0.0545,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0421337
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalOffside": 1,
"minutesPlayed": 30,
"touches": 22,
"rating": 6.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.1055,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0544928
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 19,
"touches": 14,
"rating": 7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 19,
"touches": 7,
"rating": 7.3,
"possessionLostCtrl": 2,
"expectedGoals": 0.2769,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 15,
"totalLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.106
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 21,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 74,
"touches": 52,
"rating": 7,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.317434
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 41,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.0136,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 61,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.0534,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0051029
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.4,
"possessionLostCtrl": 20,
"expectedGoals": 0.0419,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00732278
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 74,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0104577
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 62,
"touches": 41,
"rating": 6.6,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7,
"possessionLostCtrl": 17,
"expectedGoals": 0.0424,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.117925
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 5,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.007,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.273513
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 62,
"touches": 34,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.1241,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.72392
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 84,
"touches": 15,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.3528,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 28,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0174286
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 28,
"touches": 13,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0377,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00995315
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 16,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0298,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Duro",
"slug": "hugo-duro",
"shortName": "H. Duro",
"position": "F",
"jerseyNumber": "9",
"height": 180,
"userCount": 2448,
"id": 909119,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 942192000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0631\u0648, \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u062f\u0648\u0631\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 16,
"touches": 2,
"rating": 6.7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0235303
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 6,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Rodrigo Abajas",
"slug": "rodrigo-abajas",
"shortName": "R. Abajas",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 23,
"id": 1657026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1070582400,
"proposedMarketValueRaw": {
"value": 94000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Valencia"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 22,
"accurateLongBalls": 13,
"goalAssist": 0,
"totalClearance": 2,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"goalsPrevented": 0.2608
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 4,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.2,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0216259
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 41,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.2,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 36,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"totalClearance": 5,
"outfielderBlock": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 62,
"rating": 7.3,
"possessionLostCtrl": 15,
"expectedGoals": 0.0243,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00844382
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 3,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 45,
"touches": 26,
"rating": 7.1,
"possessionLostCtrl": 4,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0825224
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0589,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0185941
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 24,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 77,
"touches": 43,
"rating": 6.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.1729,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0270781
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0146682
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 16,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.6,
"possessionLostCtrl": 22,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.133048
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0574,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 27,
"touches": 26,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0283,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.10666
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 2,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1134,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00512139
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 6,
"challengeLost": 2,
"totalContest": 2,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0756933
},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 13,
"totalLongBalls": 13,
"accurateLongBalls": 5,
"goalAssist": 0,
"goodHighClaim": 2,
"saves": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.0721
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7.3,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0490659
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 11,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 5,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0155,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 3,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 89,
"touches": 73,
"rating": 7.1,
"possessionLostCtrl": 15,
"expectedGoals": 0.1381,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0122297
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 3,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 30,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0135438
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"minutesPlayed": 53,
"touches": 31,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.2253,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.060529
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"minutesPlayed": 62,
"touches": 25,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0404921
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 20,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 3,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 89,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 1.0866,
"keyPass": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.462227
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 3,
"dispossessed": 4,
"totalContest": 4,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.1207,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.117443
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 3,
"totalOffside": 2,
"minutesPlayed": 61,
"touches": 17,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.4544,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0544154
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 37,
"touches": 39,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0139698
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 32,
"rating": 6.8,
"possessionLostCtrl": 13,
"expectedGoals": 0.0295,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0494858
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 3,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"minutesPlayed": 28,
"touches": 28,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.1859,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0945739
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 1
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Collado",
"firstName": "Alberto Collado",
"slug": "collado-alberto",
"shortName": "A. Collado",
"position": "M",
"jerseyNumber": "10",
"userCount": 64,
"id": 1402673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1113609600,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 14,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 7.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": -0.5237
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 65,
"rating": 6.8,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00983582
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 19,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 5,
"outfielderBlock": 2,
"totalTackle": 2,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00976556
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"totalClearance": 7,
"outfielderBlock": 3,
"ownGoals": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.6,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 18,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 3,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0054,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00596661
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 41,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 13,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 7,
"errorLeadToAShot": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.7,
"possessionLostCtrl": 11,
"expectedGoals": 0.0262,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.128077
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 86,
"touches": 54,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00714768
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 29,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.2674,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 57,
"touches": 25,
"rating": 6.5,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.068416
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 4,
"totalOffside": 1,
"minutesPlayed": 73,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0848,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0971319
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"challengeLost": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0152986
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"minutesPlayed": 45,
"touches": 26,
"rating": 6.9,
"possessionLostCtrl": 9,
"expectedGoals": 0.0385,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0127523
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 33,
"touches": 11,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.1105,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"minutesPlayed": 33,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.304058
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 17,
"touches": 14,
"rating": 5.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.1477,
"ratingVersions": {
"original": 5.4,
"alternative": null
},
"expectedAssists": 0.00786154
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 2,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Maroto",
"firstName": "",
"lastName": "",
"slug": "mario-maroto",
"shortName": "M. Maroto",
"position": "M",
"jerseyNumber": "34",
"height": 176,
"userCount": 23,
"id": 1086415,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041379200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 27,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -0.6246
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.8,
"possessionLostCtrl": 17,
"expectedGoals": 0.0271,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0511385
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 40,
"totalLongBalls": 15,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 72,
"touches": 68,
"rating": 6.8,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 63,
"accuratePass": 51,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 9,
"shotOffTarget": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 4,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0082,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 36,
"totalLongBalls": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 5.9,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 5.9,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0777,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0246493
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 6,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 72,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0105961
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 51,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.028,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0203755
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 3,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 80,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.0199,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0519276
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 36,
"rating": 7,
"possessionLostCtrl": 13,
"expectedGoals": 0.409,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0619665
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 6,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 80,
"touches": 29,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.2508,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.156946
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"totalContest": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 17,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 18,
"touches": 22,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.1071,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.118954
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"minutesPlayed": 10,
"touches": 5,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0552,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 13,
"totalLongBalls": 21,
"accurateLongBalls": 7,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.6317
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 49,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 5,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.6,
"possessionLostCtrl": 11,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.372461
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 49,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"goals": 1,
"totalClearance": 6,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.9,
"possessionLostCtrl": 12,
"expectedGoals": 0.3147,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.00845149
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 46,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 6,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.2266,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.00933388
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.471157
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 44,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 2,
"shotOffTarget": 1,
"wasFouled": 2,
"minutesPlayed": 63,
"touches": 58,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0408,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0301911
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 4,
"fouls": 1,
"minutesPlayed": 57,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.0453,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0126868
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0287923
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 3,
"dispossessed": 5,
"totalContest": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 27,
"rating": 6.3,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.066135
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 10,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 26,
"expectedGoals": 0.067,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.193768
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalOffside": 1,
"minutesPlayed": 56,
"touches": 25,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0485,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00519302
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 34,
"touches": 13,
"rating": 7.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.5737,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 16,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0671824
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 16,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0252491
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"totalClearance": 1,
"interceptionWon": 2,
"minutesPlayed": 27,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.020968
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 23,
"totalLongBalls": 26,
"accurateLongBalls": 12,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 5,
"minutesPlayed": 90,
"touches": 42,
"rating": 7.7,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"goalsPrevented": 0.2294
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 26,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 7.2,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0120524
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0394,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0338781
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"shotOffTarget": 1,
"totalClearance": 7,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0361,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 28,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 3,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.3,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0127108
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"wasFouled": 1,
"minutesPlayed": 88,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.0295,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00804839
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 2,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 59,
"rating": 7.4,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00882604
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 20,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 1,
"interceptionWon": 4,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 70,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0104008
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 5,
"dispossessed": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 63,
"touches": 25,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.8442,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00967128
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 5,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 9,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 88,
"touches": 57,
"rating": 8.4,
"possessionLostCtrl": 13,
"expectedGoals": 0.0525,
"keyPass": 5,
"ratingVersions": {
"original": 8.4,
"alternative": null
},
"expectedAssists": 0.434281
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 6,
"duelLost": 6,
"duelWon": 7,
"dispossessed": 1,
"wasFouled": 1,
"totalOffside": 2,
"minutesPlayed": 63,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00777043
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Takuma Asano",
"firstName": "",
"lastName": "",
"slug": "takuma-asano",
"shortName": "T. Asano",
"position": "F",
"jerseyNumber": "11",
"height": 171,
"userCount": 2234,
"id": 309546,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 784425600,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 18,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.1837,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 20,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"minutesPlayed": 2,
"touches": 4,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"minutesPlayed": 2,
"touches": 2
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": -0.0523
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 30,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 2,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 60,
"touches": 50,
"rating": 6.5,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00739233
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 61,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 7,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 80,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0146609
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 86,
"accuratePass": 75,
"totalLongBalls": 12,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 6,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 96,
"rating": 7.1,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0288298
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 41,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.8,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0204669
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 67,
"accuratePass": 57,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0152,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0733131
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.025,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0112109
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 61,
"touches": 29,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0306,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 47,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 4,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.1891,
"keyPass": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.182474
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 3,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"penaltyConceded": 1,
"fouls": 3,
"minutesPlayed": 78,
"touches": 45,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.2023,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0197005
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"wasFouled": 1,
"minutesPlayed": 60,
"touches": 16,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 45,
"touches": 30,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0232,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0349385
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 30,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0142151
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 30,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0867,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 19,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0262908
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 3,
"onTargetScoringAttempt": 1,
"minutesPlayed": 12,
"touches": 17,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.016,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.117146
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.2,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": -0.7452
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 76,
"accuratePass": 71,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 93,
"rating": 6.5,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0262493
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 74,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 2,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00641076
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 76,
"accuratePass": 67,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 7,
"duelLost": 2,
"duelWon": 11,
"totalClearance": 8,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 96,
"rating": 7.3,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00544026
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 39,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalTackle": 4,
"minutesPlayed": 69,
"touches": 60,
"rating": 7,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0335248
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 54,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 81,
"touches": 73,
"rating": 7.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0883,
"keyPass": 2,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.143461
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 55,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.1629,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0812631
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 69,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 14,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.323396
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 46,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalTackle": 2,
"wasFouled": 4,
"fouls": 2,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.6,
"possessionLostCtrl": 24,
"expectedGoals": 0.0658,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.150963
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 34,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 81,
"touches": 63,
"rating": 7,
"possessionLostCtrl": 15,
"expectedGoals": 0.2545,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0303049
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"dispossessed": 2,
"bigChanceMissed": 3,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 69,
"touches": 23,
"rating": 5.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.3763,
"keyPass": 1,
"ratingVersions": {
"original": 5.6,
"alternative": null
},
"expectedAssists": 0.00678527
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 21,
"touches": 27,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00518226
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 21,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 1,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.127633
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "C\u00e9dric Bakambu",
"firstName": "",
"lastName": "",
"slug": "cedric-bakambu",
"shortName": "C. Bakambu",
"position": "F",
"jerseyNumber": "11",
"height": 182,
"userCount": 10705,
"id": 115665,
"country": {
"alpha2": "CD",
"alpha3": "COD",
"name": "DR Congo",
"slug": "dr-congo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 671328000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0631\u064a\u0643 \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0628\u0627\u0643\u0627\u0645\u0628\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"duelWon": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 21,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 9,
"touches": 9,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0802,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0247611
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 2,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Nobel Mendy",
"slug": "mendy-nobel",
"shortName": "N. Mendy",
"position": "D",
"jerseyNumber": "32",
"height": 187,
"userCount": 176,
"id": 1458073,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1092614400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Mateo Flores",
"slug": "mateo-flores",
"shortName": "M. Flores",
"position": "M",
"jerseyNumber": "46",
"userCount": 53,
"id": 1893864,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081296000,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 46,
"jerseyNumber": "46",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 10,
"totalLongBalls": 12,
"accurateLongBalls": 2,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.0074000000000001
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.6,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00579546
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 25,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 71,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 48,
"accuratePass": 41,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 6,
"totalClearance": 6,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 60,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceCreated": 1,
"totalClearance": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 7,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.108052
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0141028
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 40,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 2,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.4,
"possessionLostCtrl": 3,
"expectedGoals": 0.4088,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0555665
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 21,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 5,
"wonContest": 3,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"onTargetScoringAttempt": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 76,
"touches": 54,
"rating": 6.3,
"possessionLostCtrl": 17,
"expectedGoals": 0.1807,
"keyPass": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.156596
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"totalContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 76,
"touches": 33,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.3373,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.010449
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 87,
"touches": 43,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.05915
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"goalAssist": 1,
"aerialLost": 5,
"aerialWon": 1,
"duelLost": 10,
"duelWon": 3,
"dispossessed": 5,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalClearance": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 76,
"touches": 41,
"rating": 6.9,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0179387
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 2,
"fouls": 2,
"minutesPlayed": 19,
"touches": 14,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 10,
"rating": 7.6,
"possessionLostCtrl": 2,
"expectedGoals": 0.0889,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.00554591
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"duelLost": 9,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 2,
"wasFouled": 1,
"minutesPlayed": 14,
"touches": 15,
"rating": 6,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0366334
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 14,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 9,
"touches": 1,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Mateu Morey",
"firstName": "",
"lastName": "",
"slug": "mateu-morey",
"shortName": "M. Morey",
"position": "D",
"jerseyNumber": "2",
"height": 171,
"userCount": 671,
"id": 879543,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951955200,
"proposedMarketValueRaw": {
"value": 825000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u064a, \u0645\u0627\u062a\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Pablo Maffeo",
"slug": "pablo-maffeo",
"shortName": "P. Maffeo",
"position": "D",
"jerseyNumber": "23",
"height": 173,
"userCount": 2011,
"id": 788216,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868665600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0628\u0644\u0648 \u0645\u0627\u0641\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u0641\u064a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Mallorca"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 24,
"totalLongBalls": 24,
"accurateLongBalls": 9,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"totalKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.6,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 0.3013
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 40,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 3,
"duelLost": 6,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 13,
"expectedGoals": 0.234,
"keyPass": 3,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.143289
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 54,
"totalLongBalls": 14,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.5,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0092502
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 65,
"accuratePass": 49,
"totalLongBalls": 15,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 6,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 76,
"rating": 6.4,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 51,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 6.7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0138546
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 46,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 7,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.1394,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0193259
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"interceptionWon": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 60,
"rating": 6.9,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0162924
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 2,
"minutesPlayed": 85,
"touches": 43,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0612,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.136515
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 9,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 85,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 12,
"expectedGoals": 1.2531,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0299344
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 65,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 15,
"expectedGoals": 0.0932,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.172375
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 4,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 73,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0123679
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 25,
"touches": 20,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"minutesPlayed": 25,
"touches": 16,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0505,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00503547
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 17,
"touches": 8,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0161,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 9,
"touches": 4,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Marco de las Sias",
"slug": "marco-de-las-sias",
"shortName": "M. d. l. S\u00edas",
"position": "D",
"jerseyNumber": "26",
"userCount": 26,
"id": 1893146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1135814400
},
"teamId": 43756,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pelayo Fern\u00e1ndez",
"firstName": "",
"lastName": "",
"slug": "pelayo-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "27",
"height": 193,
"userCount": 220,
"id": 1139724,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051574400,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"saves": 3,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.3719
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 4,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.6,
"possessionLostCtrl": 17,
"expectedGoals": 0.0336,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.213433
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"minutesPlayed": 45,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0712,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00602591
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 60,
"totalLongBalls": 8,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 8,
"duelLost": 2,
"duelWon": 9,
"blockedScoringAttempt": 1,
"totalClearance": 11,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0291,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00711645
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 45,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 7,
"outfielderBlock": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0128438
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 6,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 8,
"expectedGoals": 0.0614,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0305,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0307028
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 56,
"accuratePass": 41,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 7,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 71,
"rating": 6.9,
"possessionLostCtrl": 19,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0338776
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 33,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 9,
"duelWon": 9,
"challengeLost": 2,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.5,
"possessionLostCtrl": 15,
"expectedGoals": 0.0633,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0182595
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 6,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 85,
"touches": 28,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.0853,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.118057
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.041,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0583218
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 37,
"accuratePass": 31,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"outfielderBlock": 1,
"minutesPlayed": 45,
"touches": 39,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00600912
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.024297
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 6,
"expectedGoals": 0.1124,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0207931
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javier Serrano",
"slug": "javier-serrano",
"shortName": "J. Serrano",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 293,
"id": 1019320,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042675200,
"proposedMarketValueRaw": {
"value": 525000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
}
}
},
"teamId": 24326,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Atl\u00e9tico Madrid"
}
]
[
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 14,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 4,
"punches": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -1.4857
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 4,
"wonContest": 3,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00621621
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 4,
"totalTackle": 3,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 28,
"rating": 5.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 5.7,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 22,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.0917,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 15,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 4,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 52,
"rating": 5.8,
"possessionLostCtrl": 15,
"expectedGoals": 0.0805,
"ratingVersions": {
"original": 5.8,
"alternative": null
},
"expectedAssists": 0.00948694
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 63,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.1221,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0499832
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 34,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 6,
"fouls": 1,
"minutesPlayed": 78,
"touches": 57,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0184867
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 70,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.2033,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0082263
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.1541,
"keyPass": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.207094
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 5,
"wonContest": 2,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 14,
"expectedGoals": 0.6204,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.37055
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 23,
"rating": 7.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.8375,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.216761
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.0651,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pape Gueye",
"slug": "pape-gueye",
"shortName": "P. Gueye",
"position": "M",
"jerseyNumber": "18",
"height": 187,
"userCount": 8846,
"id": 879694,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917136000,
"proposedMarketValueRaw": {
"value": 7800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u064a\u064a\u060c \u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u063a. \u0628\u0627\u0628"
}
}
},
"teamId": 2819,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 20,
"touches": 16,
"rating": 6.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"totalContest": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.8,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0948126
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 2,
"minutesPlayed": 12,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"minutesPlayed": 12,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00764213
},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Villarreal"
},
{
"player": {
"name": "Marc-Andr\u00e9 ter Stegen",
"firstName": "",
"lastName": "",
"slug": "marc-andre-ter-stegen",
"shortName": "M.-A ter Stegen",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 73119,
"id": 88625,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 704592000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
}
}
},
"teamId": 2817,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"wasFouled": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.7,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.1116
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 66,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 95,
"rating": 7.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0434,
"keyPass": 2,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.266009
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 52,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00611101
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 70,
"totalLongBalls": 7,
"accurateLongBalls": 7,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 5,
"minutesPlayed": 81,
"touches": 81,
"rating": 7.1,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0478399
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 54,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 79,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0416137
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 59,
"touches": 46,
"rating": 8.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0748,
"keyPass": 2,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.471804
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 46,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 4,
"fouls": 3,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.1848,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0157293
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 58,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 1,
"totalCross": 2,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 59,
"touches": 70,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.0341,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.283584
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 31,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 3,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 8.7,
"possessionLostCtrl": 18,
"expectedGoals": 0.1636,
"keyPass": 3,
"ratingVersions": {
"original": 8.7,
"alternative": null
},
"expectedAssists": 0.574901
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 3,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"hitWoodwork": 1,
"goals": 2,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.7,
"possessionLostCtrl": 10,
"expectedGoals": 2.3311,
"penaltyMiss": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0232855
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 27,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 5,
"goals": 2,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 8.6,
"possessionLostCtrl": 14,
"expectedGoals": 1.3083,
"keyPass": 2,
"ratingVersions": {
"original": 8.6,
"alternative": null
},
"expectedAssists": 0.161919
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 45,
"touches": 30,
"rating": 7.1,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.2349
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 31,
"touches": 27,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 31,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 31,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0171761
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 1,
"duelLost": 6,
"duelWon": 1,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 31,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0200006
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 9,
"touches": 11,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ander Astralaga",
"firstName": "",
"lastName": "",
"slug": "ander-astralaga",
"shortName": "A. Astralaga",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 6599,
"id": 1142253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083542400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Andr\u00e9s Cuenca",
"firstName": "Andr\u00e9s Cuenca",
"slug": "andres-cuenca",
"shortName": "A. Cuenca",
"position": "D",
"jerseyNumber": "27",
"height": 181,
"userCount": 4193,
"id": 1503832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1181520000,
"proposedMarketValueRaw": {
"value": 185000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ansu Fati",
"slug": "ansu-fati",
"shortName": "A. Fati",
"position": "F",
"jerseyNumber": "10",
"height": 178,
"userCount": 107703,
"id": 962883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1036022400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u062a\u064a, \u0623\u0646\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u0627\u062a\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Toni Fern\u00e1ndez",
"slug": "toni-fernandez",
"shortName": "T. Fern\u00e1ndez",
"position": "F",
"jerseyNumber": "42",
"height": 186,
"userCount": 3646,
"id": 1590761,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1216080000,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 2,
"penaltyConceded": 1,
"fouls": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": 0.4539
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"totalContest": 1,
"totalClearance": 3,
"interceptionWon": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.9,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0888275
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 5,
"interceptionWon": 3,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0578,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0287434
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 16,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"challengeLost": 1,
"totalClearance": 12,
"outfielderBlock": 2,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00613873
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 65,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 65,
"touches": 39,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0279,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0789737
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 37,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 58,
"rating": 7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0186256
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 5,
"wonContest": 3,
"totalClearance": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.36538
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 49,
"rating": 6.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.1612,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0365688
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 75,
"touches": 31,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0342,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.126125
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 77,
"touches": 28,
"rating": 8.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.2382,
"ratingVersions": {
"original": 8.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 2,
"totalLongBalls": 11,
"accurateLongBalls": 2,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 45,
"touches": 15,
"rating": 7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.4122
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"minutesPlayed": 25,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 25,
"touches": 15,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00640151
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"minutesPlayed": 15,
"touches": 11,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00584853
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 7,
"rating": 7.3,
"possessionLostCtrl": 1,
"expectedGoals": 0.1744,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Javier Mart\u00f3n Ans\u00f3",
"firstName": "",
"lastName": "",
"slug": "javier-marton-anso",
"shortName": "J. M. Ans\u00f3",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 175,
"id": 1082215,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925948800,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 27,
"rating": 6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"goalsPrevented": -1.2195
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 105,
"accuratePass": 96,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 9,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 120,
"rating": 6.9,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0202494
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 94,
"accuratePass": 89,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"blockedScoringAttempt": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 103,
"rating": 6.5,
"possessionLostCtrl": 5,
"expectedGoals": 0.0903,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00688361
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jailson",
"firstName": "",
"lastName": "",
"slug": "jailson",
"shortName": "Jailson",
"position": "M",
"jerseyNumber": "16",
"height": 187,
"userCount": 515,
"id": 794861,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 810432000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 68,
"accuratePass": 63,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 3,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 63,
"touches": 78,
"rating": 6.9,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0122559
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 33,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 67,
"touches": 61,
"rating": 6.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.017,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0200555
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 47,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 63,
"touches": 58,
"rating": 7,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.054086
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 63,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 88,
"rating": 7,
"possessionLostCtrl": 16,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.13261
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 5,
"touches": 3,
"possessionLostCtrl": 2
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 35,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"penaltyWon": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.4,
"possessionLostCtrl": 15,
"expectedGoals": 0.7884,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.100237
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 68,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0329,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 4,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.9,
"possessionLostCtrl": 17,
"expectedGoals": 0.0575,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.241361
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 61,
"accuratePass": 52,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 85,
"touches": 82,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.126,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.118249
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carlos Dom\u00ednguez",
"firstName": "",
"lastName": "",
"slug": "carlos-dominguez",
"shortName": "C. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 198,
"id": 1069703,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644\u0648\u0633 \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u062f\u0648\u0645\u064a\u0646\u063a\u064a\u0632"
}
}
},
"teamId": 2821,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 34,
"accuratePass": 28,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 27,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0175,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0105487
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.108414
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 23,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1061,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 22,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.0755,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
},
{
"player": {
"name": "Alfon Gonz\u00e1lez",
"slug": "alfon-gonzalez",
"shortName": "A. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "12",
"height": 172,
"userCount": 122,
"id": 1468090,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 925776000,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Celta Vigo"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.1168
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 24,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7,
"possessionLostCtrl": 29,
"expectedGoals": 0.0758,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0347517
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 27,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 56,
"rating": 7.2,
"possessionLostCtrl": 13,
"expectedGoals": 0.0219,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.197402
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 39,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00679702
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 40,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 3,
"duelWon": 7,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 7.1,
"possessionLostCtrl": 19,
"expectedGoals": 0.033,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0192052
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 32,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 14,
"accurateCross": 3,
"duelLost": 2,
"duelWon": 9,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 4,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 89,
"rating": 7.6,
"possessionLostCtrl": 29,
"expectedGoals": 0.0226,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.233435
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.0867,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0126044
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.0232,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00798028
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 55,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 79,
"rating": 7.3,
"possessionLostCtrl": 11,
"expectedGoals": 0.105,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.15117
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 11,
"duelWon": 5,
"dispossessed": 3,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 78,
"touches": 23,
"rating": 6.8,
"possessionLostCtrl": 12,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.119273
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 18,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 14,
"duelWon": 7,
"dispossessed": 8,
"totalContest": 4,
"wonContest": 3,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 67,
"touches": 48,
"rating": 6.5,
"possessionLostCtrl": 22,
"expectedGoals": 0.1908,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0203062
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 45,
"touches": 27,
"rating": 6.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.1779,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0136026
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 1,
"totalContest": 1,
"minutesPlayed": 23,
"touches": 11,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Borja Mayoral",
"firstName": "",
"lastName": "",
"slug": "borja-mayoral",
"shortName": "B. Mayoral",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2825,
"id": 604954,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860198400,
"proposedMarketValueRaw": {
"value": 15600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u064a\u0648\u0631\u0627\u0644, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0627\u064a\u0648\u0631\u0627\u0644"
}
}
},
"teamId": 2859,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"fouls": 1,
"minutesPlayed": 23,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.8072,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 12,
"touches": 14,
"rating": 7.1,
"possessionLostCtrl": 3,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0647434
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Guillem Trilla",
"firstName": "Guillem",
"lastName": "Trilla",
"slug": "guillem-trilla",
"shortName": "G. Trilla",
"position": "D",
"jerseyNumber": "33",
"userCount": 16,
"id": 1936438,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 23000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "David Arguelles",
"firstName": "",
"lastName": "",
"slug": "david-arguelles",
"shortName": "D. Arguelles",
"position": "D",
"jerseyNumber": "34",
"height": 170,
"userCount": 14,
"id": 1014085,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Abdoulaye Keita",
"firstName": "Abdoulaye Keita",
"lastName": "",
"slug": "abdoulaye-keita",
"shortName": "A. Keita",
"position": "F",
"jerseyNumber": "36",
"height": 186,
"userCount": 29,
"id": 1168094,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030838400,
"proposedMarketValueRaw": {
"value": 155000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 7,
"totalLongBalls": 26,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 2,
"wasFouled": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.4056
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 18,
"totalLongBalls": 15,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 10,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 10,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 5,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.9,
"possessionLostCtrl": 14,
"expectedGoals": 0.3855,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 33,
"accuratePass": 17,
"totalLongBalls": 8,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 4,
"outfielderBlock": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 28,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"totalClearance": 7,
"outfielderBlock": 3,
"interceptionWon": 4,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.3,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 12,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 5,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 28,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 11,
"challengeLost": 3,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 4,
"fouls": 3,
"minutesPlayed": 90,
"touches": 55,
"rating": 6.4,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0105452
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 14,
"totalLongBalls": 9,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 5,
"duelWon": 6,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 62,
"touches": 43,
"rating": 7.2,
"possessionLostCtrl": 14,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 13,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 85,
"touches": 54,
"rating": 6.8,
"possessionLostCtrl": 20,
"expectedGoals": 0.0958,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0203507
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 8,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.0922,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 10,
"duelWon": 7,
"challengeLost": 2,
"totalContest": 3,
"wonContest": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 74,
"touches": 37,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.028348
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 9,
"duelLost": 12,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 14,
"rating": 6.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0152,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0058,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0881839
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 28,
"touches": 11,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00785476
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 16,
"touches": 10,
"rating": 6.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 4,
"totalTackle": 1,
"minutesPlayed": 16,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"wasFouled": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Alvin",
"slug": "alvin",
"shortName": "Alvin",
"position": "G",
"jerseyNumber": "36",
"userCount": 26,
"id": 1513618,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052697600,
"proposedMarketValueRaw": {
"value": 27000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 25,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"ownGoals": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.8085
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Carvajal",
"slug": "daniel-carvajal",
"shortName": "D. Carvajal",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 89435,
"id": 138572,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 695088000,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
}
}
},
"teamId": 2829,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 48,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 2,
"errorLeadToAShot": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 63,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.9865,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0473379
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 82,
"accuratePass": 73,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00947357
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 85,
"accuratePass": 81,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 7,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 101,
"rating": 7.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.2371,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0182465
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 52,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 6.6,
"possessionLostCtrl": 11,
"expectedGoals": 0.2409,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.101413
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 88,
"accuratePass": 85,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalCross": 9,
"accurateCross": 4,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 2,
"bigChanceCreated": 2,
"blockedScoringAttempt": 2,
"minutesPlayed": 90,
"touches": 105,
"rating": 8.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0749,
"keyPass": 6,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.612784
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 73,
"totalLongBalls": 7,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.4,
"possessionLostCtrl": 8,
"expectedGoals": 0.0095,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.130367
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jude Bellingham",
"slug": "jude-bellingham",
"shortName": "J. Bellingham",
"position": "M",
"jerseyNumber": "5",
"height": 188,
"userCount": 476871,
"id": 991011,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056844800,
"proposedMarketValueRaw": {
"value": 170000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u064a\u0646\u063a\u0647\u0627\u0645\u060c \u062c\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0628. \u062c\u0648\u062f"
}
}
},
"teamId": 2829,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 51,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 83,
"touches": 79,
"rating": 8.5,
"possessionLostCtrl": 12,
"expectedGoals": 0.132,
"keyPass": 3,
"ratingVersions": {
"original": 8.5,
"alternative": null
},
"expectedAssists": 0.166572
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 55,
"touches": 57,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.1043,
"keyPass": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.292285
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 32,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"duelLost": 6,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 6,
"blockedScoringAttempt": 1,
"goals": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 8.3,
"possessionLostCtrl": 20,
"expectedGoals": 1.913,
"keyPass": 7,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.224814
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 36,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 6,
"totalContest": 5,
"wonContest": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 84,
"touches": 55,
"rating": 8.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.6407,
"keyPass": 2,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.18282
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 5,
"dispossessed": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 3,
"minutesPlayed": 35,
"touches": 25,
"rating": 8.3,
"possessionLostCtrl": 10,
"expectedGoals": 0.0794,
"keyPass": 2,
"ratingVersions": {
"original": 8.3,
"alternative": null
},
"expectedAssists": 0.487582
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 22,
"accuratePass": 22,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"minutesPlayed": 31,
"touches": 30,
"rating": 7.2,
"possessionLostCtrl": 1,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0423981
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 10,
"touches": 11,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"wasFouled": 1,
"penaltyWon": 1,
"minutesPlayed": 10,
"touches": 10,
"rating": 7.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.0454,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0208022
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 11,
"totalLongBalls": 26,
"accurateLongBalls": 9,
"goalAssist": 0,
"totalClearance": 1,
"errorLeadToAGoal": 1,
"savedShotsFromInsideTheBox": 6,
"saves": 10,
"punches": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7.8,
"possessionLostCtrl": 18,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.00937621,
"goalsPrevented": 0.5403
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 76,
"touches": 32,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.0136,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.027535
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 11,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 5,
"outfielderBlock": 3,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 22,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0363,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0420286
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 3,
"penaltyConceded": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 44,
"rating": 5.8,
"possessionLostCtrl": 9,
"expectedGoals": 0.0215,
"keyPass": 1,
"ratingVersions": {
"original": 5.8,
"alternative": null
},
"expectedAssists": 0.0244577
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 11,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 76,
"touches": 33,
"rating": 7.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.1682,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 26,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00531352
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.0558,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00841297
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"goalAssist": 0,
"duelWon": 1,
"shotOffTarget": 2,
"totalClearance": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 81,
"touches": 27,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.0448,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0179675
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"minutesPlayed": 45,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00532088
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 12,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 23,
"touches": 19,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"errorLeadToAGoal": 1,
"minutesPlayed": 14,
"touches": 8,
"rating": 4.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 4.4,
"alternative": null
}
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0611637
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"minutesPlayed": 9,
"touches": 6,
"rating": 6.2,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0764278
},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Calero",
"slug": "fernando-calero",
"shortName": "F. Calero",
"position": "D",
"jerseyNumber": "5",
"height": 183,
"userCount": 120,
"id": 857205,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 811036800,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0644\u064a\u0631\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0643\u0627\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Espanyol"
}
]
[
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"punches": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 25,
"rating": 7.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.6595
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 79,
"touches": 48,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00668857
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 26,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 7,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.2,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 39,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.089,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 51,
"rating": 7.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00916427
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 22,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 68,
"touches": 39,
"rating": 6.8,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00564643
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 44,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 2,
"totalCross": 7,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.6,
"possessionLostCtrl": 21,
"keyPass": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.213418
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 2,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0524,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0320679
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 9,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 7,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 88,
"touches": 32,
"rating": 6.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.1243,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0119191
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"minutesPlayed": 88,
"touches": 23,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0321,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0971919
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 79,
"touches": 20,
"rating": 7,
"possessionLostCtrl": 7,
"expectedGoals": 0.1372,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 6,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 22,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0906498
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalTackle": 1,
"minutesPlayed": 11,
"touches": 6,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"interceptionWon": 2,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"totalContest": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Andr\u00e9 Almeida",
"slug": "andre-almeida",
"shortName": "A. Almeida",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 1028,
"id": 845693,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 959644800,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631\u064a\u0647 \u0623\u0644\u0645\u064a\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0644\u0645\u064a\u062f\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 1,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Rodrigo Abajas",
"slug": "rodrigo-abajas",
"shortName": "R. Abajas",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 23,
"id": 1657026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1070582400,
"proposedMarketValueRaw": {
"value": 94000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 39,
"jerseyNumber": "39",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Fran P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "fran-perez",
"shortName": "F. P\u00e9rez",
"position": "M",
"jerseyNumber": "23",
"height": 176,
"userCount": 366,
"id": 966637,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031529600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0641\u0631\u0627\u0646"
}
}
},
"teamId": 2828,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Warren Madrigal",
"firstName": "Warren Madrigal",
"slug": "madrigal-warren",
"shortName": "W. Madrigal",
"position": "F",
"jerseyNumber": "42",
"height": 185,
"userCount": 663,
"id": 1102593,
"country": {
"alpha2": "CR",
"alpha3": "CRI",
"name": "Costa Rica",
"slug": "costa-rica"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090627200,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Valencia"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"goodHighClaim": 4,
"minutesPlayed": 90,
"touches": 40,
"rating": 6.3,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": -1.6878
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 81,
"accuratePass": 72,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 108,
"rating": 7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0721,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0213302
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 88,
"accuratePass": 85,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalClearance": 4,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 98,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0104209
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 103,
"accuratePass": 88,
"totalLongBalls": 17,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 113,
"rating": 6.7,
"possessionLostCtrl": 16,
"expectedGoals": 0.086,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00927814
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 71,
"totalLongBalls": 13,
"accurateLongBalls": 12,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 104,
"rating": 7.6,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0947623
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 5,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 63,
"rating": 7,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.336033
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 37,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 79,
"touches": 52,
"rating": 6.7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0129364
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 5,
"totalTackle": 5,
"fouls": 3,
"minutesPlayed": 62,
"touches": 46,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00748144
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 6,
"totalContest": 5,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 79,
"touches": 61,
"rating": 7,
"possessionLostCtrl": 15,
"expectedGoals": 0.0484,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0514454
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 78,
"touches": 14,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.0755,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00922124
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 15,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 62,
"touches": 27,
"rating": 6.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00829606
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 28,
"touches": 37,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0679,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 28,
"touches": 16,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0559,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0136272
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 11,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0800695
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
}
]
[
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 22,
"totalLongBalls": 14,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelWon": 1,
"lastManTackle": 1,
"totalTackle": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.4,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": 0.288
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0562514
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 2,
"totalClearance": 8,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 34,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 5,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.5,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0108459
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 89,
"touches": 70,
"rating": 7.2,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0139523
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 13,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"interceptionWon": 3,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00547018
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 38,
"rating": 7.1,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.135285
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 89,
"touches": 42,
"rating": 7,
"possessionLostCtrl": 13,
"expectedGoals": 0.055,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.19977
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0426,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0955426
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 3,
"hitWoodwork": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 64,
"touches": 21,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0967,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0193352
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 5,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 76,
"touches": 25,
"rating": 7.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.9464,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.00526836
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0620031
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 26,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 5,
"expectedGoals": 0.1224,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 14,
"touches": 11,
"rating": 7.1,
"possessionLostCtrl": 4,
"expectedGoals": 0.1626,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.17956
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 2,
"possessionLostCtrl": 1
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 1,
"touches": 3,
"expectedGoals": 0.5394
},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Osasuna"
},
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 30,
"totalLongBalls": 19,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.1383
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marvin Park",
"firstName": "",
"lastName": "",
"slug": "park-marvin",
"shortName": "M. Park",
"position": "D",
"jerseyNumber": "2",
"height": 177,
"userCount": 806,
"id": 960401,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 952387200,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 34,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0112584
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 47,
"totalLongBalls": 9,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 5,
"interceptionWon": 1,
"penaltyConceded": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 39,
"rating": 6.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.00934822
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 56,
"accuratePass": 49,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 4,
"onTargetScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.081,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00836689
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 9,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.136528
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 7.1,
"possessionLostCtrl": 12,
"expectedGoals": 0.1032,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0695919
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 46,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 74,
"touches": 68,
"rating": 7.5,
"possessionLostCtrl": 7,
"expectedGoals": 0.0315,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.172114
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 53,
"accuratePass": 50,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.0954,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.216034
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 5,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 74,
"touches": 49,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.2089,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.223195
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 13,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 12,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 7,
"wonContest": 3,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 4,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 18,
"expectedGoals": 0.2986,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00577494
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Daley Sinkgraven",
"slug": "daley-sinkgraven",
"shortName": "D. Sinkgraven",
"position": "D",
"jerseyNumber": "22",
"height": 179,
"userCount": 274,
"id": 377206,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646, \u062f\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0646\u0643\u063a\u0631\u0627\u0641\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 29,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 10,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0127822
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 9,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0739078
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 20,
"rating": 7,
"possessionLostCtrl": 6,
"expectedGoals": 0.0289,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0573563
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Adnan Januzaj",
"slug": "adnan-januzaj",
"shortName": "A. Januzaj",
"position": "M",
"jerseyNumber": "24",
"height": 186,
"userCount": 1624,
"id": 328145,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791942400,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0646\u0648\u0632\u0627, \u0639\u062f\u0646\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0639. \u062c\u0627\u0646\u0648\u0632\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 16,
"touches": 14,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"minutesPlayed": 16,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Peji\u00f1o",
"slug": "pejino",
"shortName": "Peji\u00f1o",
"position": "M",
"jerseyNumber": "7",
"height": 177,
"userCount": 94,
"id": 925220,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 838598400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062c\u064a\u0646\u064a\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
}
]
[
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 17,
"accurateLongBalls": 9,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"minutesPlayed": 90,
"touches": 34,
"rating": 7.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"goalsPrevented": 0.5209
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 3,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0148,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.295378
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Abdulay Juma Bah",
"slug": "abdulay-juma-bah",
"shortName": "A. J. Bah",
"position": "D",
"jerseyNumber": "35",
"height": 195,
"userCount": 566,
"id": 1606792,
"country": {
"alpha2": "SL",
"alpha3": "SLE",
"name": "Sierra Leone",
"slug": "sierra-leone"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1144713600,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 3,
"clearanceOffLine": 1,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 1,
"minutesPlayed": 78,
"touches": 30,
"rating": 7.5,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0211099
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 37,
"rating": 6.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.019,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0352261
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 8,
"challengeLost": 1,
"bigChanceCreated": 1,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.4,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0217634
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 2,
"minutesPlayed": 61,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.0612,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0193722
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 22,
"rating": 6.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.0134,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 78,
"touches": 35,
"rating": 7,
"possessionLostCtrl": 9,
"expectedGoals": 0.3358,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0798641
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 5,
"aerialWon": 11,
"duelLost": 14,
"duelWon": 17,
"dispossessed": 4,
"totalContest": 3,
"wonContest": 3,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 5,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.3,
"possessionLostCtrl": 15,
"expectedGoals": 0.2343,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0115734
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 76,
"touches": 28,
"rating": 7.1,
"possessionLostCtrl": 6,
"expectedGoals": 0.011,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0085,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00603375
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 2,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 29,
"touches": 24,
"rating": 7,
"possessionLostCtrl": 8,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.22416
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.319,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Chasco",
"firstName": "",
"lastName": "",
"slug": "raul-chasco",
"shortName": "R. Chasco",
"position": "D",
"jerseyNumber": "30",
"height": 177,
"userCount": 33,
"id": 1182710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063411200,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Maroto",
"firstName": "",
"lastName": "",
"slug": "mario-maroto",
"shortName": "M. Maroto",
"position": "M",
"jerseyNumber": "34",
"height": 176,
"userCount": 23,
"id": 1086415,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041379200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24361,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Valladolid"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 20,
"totalLongBalls": 10,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.243
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 40,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.7,
"possessionLostCtrl": 14,
"expectedGoals": 0.0218,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.252739
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 84,
"accuratePass": 75,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 9,
"aerialWon": 3,
"duelLost": 12,
"duelWon": 6,
"totalClearance": 4,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 90,
"touches": 95,
"rating": 7.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0216889
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 79,
"accuratePass": 76,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 4,
"interceptionWon": 1,
"wasFouled": 4,
"fouls": 1,
"minutesPlayed": 81,
"touches": 91,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0130317
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 36,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.3,
"possessionLostCtrl": 25,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.189859
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 61,
"touches": 42,
"rating": 6.8,
"possessionLostCtrl": 12,
"expectedGoals": 0.133,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0107498
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 69,
"accuratePass": 59,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 10,
"totalContest": 2,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 6,
"interceptionWon": 2,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 90,
"rating": 8,
"possessionLostCtrl": 12,
"expectedGoals": 0.2775,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.024611
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 45,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"blockedScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0143,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0328313
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 11,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 7,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 81,
"touches": 57,
"rating": 7.1,
"possessionLostCtrl": 21,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.123002
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 2,
"minutesPlayed": 61,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.4388,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.1181
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 29,
"touches": 18,
"rating": 6.7,
"possessionLostCtrl": 2,
"expectedGoals": 0.0669,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.097703
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"dispossessed": 2,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 29,
"touches": 10,
"rating": 5.8,
"possessionLostCtrl": 4,
"expectedGoals": 0.4172,
"ratingVersions": {
"original": 5.8,
"alternative": null
},
"expectedAssists": 0.0487752
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"minutesPlayed": 9,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"expectedGoals": 0.1014,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Urko Gonz\u00e1lez",
"slug": "urko-gonzalez",
"shortName": "U. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 131,
"id": 1064009,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985046400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0643\u0648 \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0646\u0632\u0627\u0644\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 16,
"totalLongBalls": 23,
"accurateLongBalls": 10,
"goalAssist": 0,
"totalClearance": 2,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"punches": 2,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.8,
"possessionLostCtrl": 13,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0140971,
"goalsPrevented": 0.4895
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 7,
"totalLongBalls": 5,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 8,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.2,
"possessionLostCtrl": 23,
"expectedGoals": 0.0308,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0181187
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 17,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"totalClearance": 5,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 6.8,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 7,
"challengeLost": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 5,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 35,
"rating": 7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 39,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.010428
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 28,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 3,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 89,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 16,
"expectedGoals": 0.033,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.157055
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 27,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00942437
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.1341,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.157596
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"hitWoodwork": 1,
"totalTackle": 3,
"wasFouled": 2,
"minutesPlayed": 71,
"touches": 26,
"rating": 7.2,
"possessionLostCtrl": 7,
"expectedGoals": 0.2819,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0850455
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 77,
"touches": 35,
"rating": 7.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.5143,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0084836
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 9,
"aerialWon": 4,
"duelLost": 13,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 2,
"totalClearance": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 76,
"touches": 26,
"rating": 6.7,
"possessionLostCtrl": 15,
"expectedGoals": 0.1387,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0808479
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 7,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 19,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00667166
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"blockedScoringAttempt": 1,
"wasFouled": 2,
"minutesPlayed": 14,
"touches": 10,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0965,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00540203
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"totalClearance": 2,
"interceptionWon": 1,
"minutesPlayed": 1,
"touches": 3
},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Rodr\u00edguez",
"slug": "adrian-rodriguez",
"shortName": "A. Rodr\u00edguez",
"position": "G",
"jerseyNumber": "31",
"height": 195,
"userCount": 112,
"id": 965822,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 976579200,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Hugo Novoa Ramos",
"firstName": "",
"lastName": "",
"slug": "hugo-novoa-ramos",
"shortName": "H. N. Ramos",
"position": "M",
"jerseyNumber": "16",
"height": 182,
"userCount": 346,
"id": 1001967,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1043366400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 18,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"goalsPrevented": -1.2339
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 64,
"accuratePass": 49,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 93,
"rating": 6.4,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0116194
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 58,
"accuratePass": 56,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 7,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 70,
"touches": 68,
"rating": 6.8,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 100,
"accuratePass": 85,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 10,
"duelLost": 5,
"duelWon": 13,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 111,
"rating": 7.1,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00626282
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 4,
"duelLost": 8,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 66,
"touches": 58,
"rating": 6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0242,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0173202
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 26,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"totalContest": 1,
"fouls": 1,
"minutesPlayed": 70,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.012041
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 66,
"touches": 47,
"rating": 6.8,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0181819
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Sa\u00fal \u00d1\u00edguez",
"firstName": "",
"lastName": "",
"slug": "saul-niguez",
"shortName": "S. \u00d1\u00edguez",
"position": "M",
"jerseyNumber": "17",
"height": 184,
"userCount": 3687,
"id": 116955,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785376000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u063a\u064a\u0632, \u0633\u0627\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0633. \u0646\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2833,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 36,
"accuratePass": 32,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 4,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.9,
"possessionLostCtrl": 10,
"expectedGoals": 0.2286,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.109451
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 5,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.8,
"possessionLostCtrl": 19,
"expectedGoals": 0.2145,
"keyPass": 1,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.256413
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"shotOffTarget": 1,
"minutesPlayed": 14,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0245,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 7,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"wasFouled": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.6,
"possessionLostCtrl": 13,
"expectedGoals": 0.0213,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0211317
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 1,
"dispossessed": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 76,
"touches": 28,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.00725102
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 4,
"aerialLost": 1,
"duelLost": 3,
"dispossessed": 1,
"fouls": 1,
"minutesPlayed": 24,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"shotOffTarget": 1,
"minutesPlayed": 24,
"touches": 14,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.011,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0117137
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 4,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"fouls": 2,
"minutesPlayed": 20,
"touches": 30,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00598618
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 17,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 20,
"touches": 20,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00849111
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Suso",
"firstName": "",
"lastName": "",
"slug": "suso",
"shortName": "Suso",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 1692,
"id": 96370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 753667200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0648\u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Collado",
"firstName": "Alberto Collado",
"slug": "collado-alberto",
"shortName": "A. Collado",
"position": "M",
"jerseyNumber": "10",
"userCount": 64,
"id": 1402673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1113609600,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
}
]
[
{
"player": {
"name": "Augusto Batalla",
"slug": "augusto-batalla",
"shortName": "A. Batalla",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 735,
"id": 358910,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830822400,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 18,
"totalLongBalls": 11,
"accurateLongBalls": 3,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 6.4,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"goalsPrevented": -0.8456
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Andrei Ra\u021biu",
"slug": "andrei-ratiu",
"shortName": "A. Ra\u021biu",
"position": "D",
"jerseyNumber": "2",
"height": 183,
"userCount": 3095,
"id": 965031,
"country": {
"alpha2": "RO",
"alpha3": "ROU",
"name": "Romania",
"slug": "romania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898300800,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u062a\u0648, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0627\u062a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 47,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 5,
"fouls": 1,
"minutesPlayed": 90,
"touches": 80,
"rating": 8.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.071,
"keyPass": 2,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0693101
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Florian Lejeune",
"slug": "florian-lejeune",
"shortName": "F. Lejeune",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 744,
"id": 88528,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674697600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u062c\u0648\u0646, \u0641\u0644\u0648\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644\u064a\u062c\u0648\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 49,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0121674
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Abdul Mumin",
"slug": "abdul-mumin",
"shortName": "A. Mumin",
"position": "D",
"jerseyNumber": "16",
"height": 188,
"userCount": 1389,
"id": 846147,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897091200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0644\u062f \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u0639\u0628\u062f\u0627\u0644\u0645\u0624\u0645\u0646"
}
}
},
"teamId": 2818,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 40,
"totalLongBalls": 12,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 4,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.1,
"possessionLostCtrl": 16,
"expectedGoals": 0.0231,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00602148
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Josep Chavarr\u00eda",
"slug": "josep-chavarria",
"shortName": "J. Chavarr\u00eda",
"position": "D",
"jerseyNumber": "3",
"height": 174,
"userCount": 216,
"id": 1010421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892166400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u0627\u0641\u0627\u0631\u064a\u0627 \u060c \u0628\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u0634. \u060c \u0628\u064a\u0628"
}
}
},
"teamId": 2818,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 49,
"accuratePass": 37,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 4,
"lastManTackle": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 83,
"rating": 7.1,
"possessionLostCtrl": 20,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0393386
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Valent\u00edn",
"firstName": "",
"lastName": "",
"slug": "oscar-valentin",
"shortName": "\u00d3. Valent\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 452,
"id": 900008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 777340800,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2818,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 54,
"accuratePass": 43,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 6,
"challengeLost": 3,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 70,
"rating": 7,
"possessionLostCtrl": 14,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.186135
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Gerard Gumbau",
"firstName": "",
"lastName": "",
"slug": "gerard-gumbau",
"shortName": "G. Gumbau",
"position": "M",
"jerseyNumber": "15",
"height": 187,
"userCount": 383,
"id": 326471,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787708800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0631\u0627\u0631\u062f \u063a\u0648\u0645\u0628\u0648 \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u063a. \u063a\u0627\u0631\u064a\u062f\u062c\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 25,
"totalLongBalls": 9,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 64,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 18,
"keyPass": 3,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0463236
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Adri\u00e1n Embarba",
"slug": "adrian-embarba",
"shortName": "A. Embarba",
"position": "M",
"jerseyNumber": "21",
"height": 173,
"userCount": 409,
"id": 346516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705196800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0622\u062f\u0631\u064a\u0627\u0646 \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u0622. \u0625\u064a\u0645\u0628\u0627\u0631\u0628\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 11,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 57,
"touches": 44,
"rating": 6.5,
"possessionLostCtrl": 21,
"expectedGoals": 0.0295,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0575612
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00d3scar Trejo",
"firstName": "",
"lastName": "",
"slug": "oscar-trejo",
"shortName": "\u00d3. Trejo",
"position": "M",
"jerseyNumber": "8",
"height": 177,
"userCount": 514,
"id": 21949,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 578016000,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631 \u062a\u0631\u064a\u062e\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 25,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 5,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 3,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 13,
"expectedGoals": 0.0553,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0140563
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "\u00c1lvaro Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "alvaro-garcia",
"shortName": "\u00c1. Garc\u00eda",
"position": "M",
"jerseyNumber": "18",
"height": 168,
"userCount": 723,
"id": 345111,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 720144000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u06a2\u0627\u0631\u0648 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 87,
"touches": 40,
"rating": 7.1,
"possessionLostCtrl": 11,
"expectedGoals": 0.1489,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0144675
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Camello",
"firstName": "",
"lastName": "",
"slug": "sergio-camello",
"shortName": "S. Camello",
"position": "F",
"jerseyNumber": "14",
"height": 177,
"userCount": 1240,
"id": 910024,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u064a\u0644\u0648, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0645\u064a\u0644\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 21,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 2,
"bigChanceMissed": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 87,
"touches": 40,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 1.1807,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0152763
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Jorge de Frutos",
"firstName": "",
"lastName": "",
"slug": "jorge-de-frutos",
"shortName": "J. de Frutos",
"position": "M",
"jerseyNumber": "19",
"height": 173,
"userCount": 642,
"id": 900003,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 849312000,
"proposedMarketValueRaw": {
"value": 3600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0641\u0631\u0648\u062a\u0648\u0633, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062f. \u0641\u0631\u0648\u062a\u0648\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 9,
"goalAssist": 0,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 33,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0685,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0484901
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Isi Palaz\u00f3n",
"firstName": "",
"lastName": "",
"slug": "isi-palazon",
"shortName": "I. Palaz\u00f3n",
"position": "M",
"jerseyNumber": "7",
"height": 169,
"userCount": 1291,
"id": 899982,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 788486400,
"proposedMarketValueRaw": {
"value": 8700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0632\u0627\u0643 \u0628\u0627\u0644\u0627\u0632\u0648\u0646 \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628. \u0643\u0627\u0645\u0627\u062a\u0634\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 33,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 7,
"expectedGoals": 0.0251,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.198895
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Unai L\u00f3pez",
"slug": "unai-lopez",
"shortName": "U. L\u00f3pez",
"position": "M",
"jerseyNumber": "17",
"height": 169,
"userCount": 520,
"id": 588566,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 815011200,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 29,
"accuratePass": 24,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 35,
"rating": 7.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0764,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0086054
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "James Rodr\u00edguez",
"slug": "james-rodriguez",
"shortName": "James Rodr\u00edguez",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 61547,
"id": 107414,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679276800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632, \u062e\u0627\u0645\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 11,
"touches": 4,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0373415
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergi Guardiola",
"slug": "sergi-guardiola",
"shortName": "S. Guardiola",
"position": "F",
"jerseyNumber": "12",
"height": 185,
"userCount": 275,
"id": 141945,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 675475200,
"proposedMarketValueRaw": {
"value": 835000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0627\u0631\u062f\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2818,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 2,
"wasFouled": 2,
"minutesPlayed": 11,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Dani C\u00e1rdenas",
"firstName": "",
"lastName": "",
"slug": "dani-cardenas",
"shortName": "D. C\u00e1rdenas",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 188,
"id": 965832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859507200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u062f\u064a\u0646\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Aridane Hern\u00e1ndez",
"slug": "aridane-hernandez",
"shortName": "A. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "5",
"height": 186,
"userCount": 235,
"id": 41013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 606614400,
"proposedMarketValueRaw": {
"value": 515000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0627\u0631\u064a\u062f\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2818,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Iv\u00e1n Balliu",
"slug": "ivan-balliu",
"shortName": "I. Balliu",
"position": "D",
"jerseyNumber": "20",
"height": 175,
"userCount": 664,
"id": 152446,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694224000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0628\u0627\u0644\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2818,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ismaila Ciss",
"firstName": "",
"lastName": "",
"slug": "ismaila-ciss",
"shortName": "I. Ciss",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 2909,
"id": 913679,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 763776000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0633 \u060c \u0628\u0627\u062b\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0628\u0627\u062b\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Pedro D\u00edaz",
"slug": "pedro-diaz",
"shortName": "P. D\u00edaz",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 245,
"id": 900669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 897004800,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2818,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Randy Nteka",
"slug": "randy-nteka",
"shortName": "R. Nteka",
"position": "M",
"jerseyNumber": "11",
"height": 190,
"userCount": 684,
"id": 932764,
"country": {
"alpha2": "AO",
"alpha3": "AGO",
"name": "Angola",
"slug": "angola"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 881366400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u062a\u064a\u0643\u0627 \u060c \u0631\u0627\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u060c \u0631\u0627\u0646\u062f\u064a"
}
}
},
"teamId": 2818,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Ra\u00fal de Tom\u00e1s",
"firstName": "",
"lastName": "",
"slug": "raul-de-tomas",
"shortName": "R. de Tom\u00e1s",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 1267,
"id": 138387,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 782352000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u062a\u0648\u0645\u0627\u0633, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u062a\u0648\u0645\u0627\u0633"
}
}
},
"teamId": 2818,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Rayo Vallecano"
},
{
"player": {
"name": "Sergio Herrera",
"slug": "sergio-herrera",
"shortName": "S. Herrera",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 584,
"id": 294377,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736646400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u064a\u0631\u0627, \u0633\u064a\u0631\u062c\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 17,
"totalLongBalls": 35,
"accurateLongBalls": 14,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"punches": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 6.4,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00949576,
"goalsPrevented": -1.7293
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jes\u00fas Areso",
"firstName": "",
"lastName": "",
"slug": "jesus-areso",
"shortName": "J. Areso",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 411,
"id": 910267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930873600,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u064a\u0633\u0648 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2820,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 15,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.014239
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Alejandro Catena",
"firstName": "",
"lastName": "",
"slug": "alejandro-catena",
"shortName": "A. Catena",
"position": "D",
"jerseyNumber": "24",
"height": 194,
"userCount": 557,
"id": 900792,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 783302400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u062a\u064a\u0646\u0627 \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 9,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 10,
"totalTackle": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.101,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Flavien Boyomo",
"firstName": "",
"lastName": "",
"slug": "boyomo-flavien",
"shortName": "F. Boyomo",
"position": "D",
"jerseyNumber": "22",
"height": 181,
"userCount": 634,
"id": 1067582,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002412800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalClearance": 6,
"outfielderBlock": 2,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Abel Bretones",
"slug": "abel-bretones",
"shortName": "A. Bretones",
"position": "D",
"jerseyNumber": "23",
"height": 188,
"userCount": 311,
"id": 1010165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966816000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2820,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 6.3,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jon Moncayola",
"slug": "jon-moncayola",
"shortName": "J. Moncayola",
"position": "M",
"jerseyNumber": "7",
"height": 182,
"userCount": 447,
"id": 976141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u0643\u0627\u064a\u0648\u0644\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 10,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 8,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"totalTackle": 6,
"fouls": 1,
"minutesPlayed": 76,
"touches": 36,
"rating": 6.7,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0218152
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Lucas Torr\u00f3",
"firstName": "",
"lastName": "",
"slug": "lucas-torro",
"shortName": "L. Torr\u00f3",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 529,
"id": 187313,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 774576000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u0648, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u062a\u0648\u0631\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 19,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 12,
"duelLost": 7,
"duelWon": 17,
"challengeLost": 2,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.6,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0221423
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aimar Oroz",
"firstName": "",
"lastName": "",
"slug": "aimar-oroz",
"shortName": "A. Oroz",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 927,
"id": 985329,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u0648\u0632 \u060c \u0623\u064a\u0645\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0623\u064a\u0645\u0627\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 2,
"totalTackle": 1,
"minutesPlayed": 66,
"touches": 22,
"rating": 6.6,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0335584
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Garc\u00eda",
"slug": "ruben-garcia",
"shortName": "R. Garc\u00eda",
"position": "M",
"jerseyNumber": "14",
"height": 171,
"userCount": 697,
"id": 260031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 742608000,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 16,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 2,
"totalContest": 1,
"totalClearance": 4,
"fouls": 1,
"minutesPlayed": 76,
"touches": 41,
"rating": 6.7,
"possessionLostCtrl": 16,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0253663
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ra\u00fal Garc\u00eda de Haro",
"slug": "raul-garcia-de-haro",
"shortName": "R. Garc\u00eda",
"position": "F",
"jerseyNumber": "9",
"height": 192,
"userCount": 546,
"id": 997280,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973209600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0624\u0648\u0644 \u063a\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 7,
"dispossessed": 4,
"totalContest": 5,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 66,
"touches": 30,
"rating": 7.4,
"possessionLostCtrl": 12,
"expectedGoals": 0.0262,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Bryan Zaragoza",
"firstName": "",
"lastName": "",
"slug": "bryan-zaragoza",
"shortName": "B. Zaragoza",
"position": "M",
"jerseyNumber": "19",
"height": 165,
"userCount": 4023,
"id": 1084730,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 999993600,
"proposedMarketValueRaw": {
"value": 11200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u064a\u0627\u0646 \u0633\u0631\u0642\u0633\u0637\u0629"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0631\u0642\u0633\u0637\u0629"
}
}
},
"teamId": 2820,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 84,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.1391,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.254782
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Pablo Ib\u00e1\u00f1ez",
"slug": "pablo-ibanez-lumbreras",
"shortName": "P. Ib\u00e1\u00f1ez",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 176,
"id": 1084381,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883612800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0628\u0627\u0646\u064a\u0632 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"wasFouled": 1,
"minutesPlayed": 24,
"touches": 12,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Ante Budimir",
"firstName": "",
"lastName": "",
"slug": "ante-budimir",
"shortName": "A. Budimir",
"position": "F",
"jerseyNumber": "17",
"height": 190,
"userCount": 5214,
"id": 37318,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 680140800,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u062f\u064a\u0645\u064a\u0631, \u0623\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0648\u062f\u064a\u0645\u064a\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 2,
"minutesPlayed": 24,
"touches": 6,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Rub\u00e9n Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "ruben-pena",
"shortName": "R. Pe\u00f1a",
"position": "D",
"jerseyNumber": "15",
"height": 170,
"userCount": 275,
"id": 255973,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 679795200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0631\u0648\u0628\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0676,
"ratingVersions": {
"original": 6,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jos\u00e9 Manuel Arn\u00e1iz",
"slug": "jose-manuel-arnaiz",
"shortName": "J. M. Arn\u00e1iz",
"position": "F",
"jerseyNumber": "20",
"height": 175,
"userCount": 362,
"id": 824130,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 797904000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u064a\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0623\u0631\u0646\u0627\u064a\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 14,
"touches": 13,
"rating": 6.9,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.106589
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Moi G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "moi-gomez",
"shortName": "M. G\u00f3mez",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 483,
"id": 149370,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772329600,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0645\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"minutesPlayed": 14,
"touches": 4,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Aitor Fern\u00e1ndez",
"slug": "aitor-fernandez",
"shortName": "A. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "13",
"height": 182,
"userCount": 234,
"id": 99516,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 673228800,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632, \u0623\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Juan Cruz",
"firstName": "",
"lastName": "",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 190,
"id": 897902,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 712281600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Nacho Vidal",
"slug": "nacho-vidal",
"shortName": "N. Vidal",
"position": "D",
"jerseyNumber": "2",
"height": 180,
"userCount": 181,
"id": 844752,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790905600,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u0644, \u0646\u0627\u062a\u0634\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0641\u064a\u062f\u0627\u0644"
}
}
},
"teamId": 2820,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Unai Garc\u00eda",
"slug": "unai-garcia",
"shortName": "U. Garc\u00eda",
"position": "D",
"jerseyNumber": "4",
"height": 182,
"userCount": 134,
"id": 330675,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 715478400,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0631\u0633\u064a\u0627, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u063a\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2820,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Jorge Herrando",
"slug": "herrando-jorge",
"shortName": "J. Herrando",
"position": "D",
"jerseyNumber": "5",
"height": 192,
"userCount": 152,
"id": 944225,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983318400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062c \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0647\u064a\u0631\u0627\u0646\u062f\u0648"
}
}
},
"teamId": 2820,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Javi Mart\u00ednez",
"slug": "javi-martinez",
"shortName": "J. Mart\u00ednez",
"position": "M",
"jerseyNumber": "21",
"height": 180,
"userCount": 96,
"id": 913732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945820800,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2820,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
},
{
"player": {
"name": "Iker Benito",
"firstName": "",
"lastName": "",
"slug": "iker-benito",
"shortName": "I. Benito",
"position": "F",
"jerseyNumber": "27",
"height": 176,
"userCount": 103,
"id": 1086346,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028937600,
"proposedMarketValueRaw": {
"value": 875000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u060c \u0625\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0625\u064a\u0643\u0631"
}
}
},
"teamId": 2820,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Osasuna"
}
]
[
{
"player": {
"name": "Jan Oblak",
"firstName": "",
"lastName": "",
"slug": "jan-oblak",
"shortName": "J. Oblak",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 10224,
"id": 69768,
"country": {
"alpha2": "SI",
"alpha3": "SVN",
"name": "Slovenia",
"slug": "slovenia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 726364800,
"proposedMarketValueRaw": {
"value": 30000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0628\u0644\u0627\u0643, \u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0628\u0644\u0627\u0643"
}
}
},
"teamId": 2836,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 25,
"rating": 7.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.0721
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Marcos Llorente",
"firstName": "",
"lastName": "",
"slug": "marcos-llorente",
"shortName": "M. Llorente",
"position": "M",
"jerseyNumber": "14",
"height": 184,
"userCount": 6576,
"id": 353138,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791424000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 48,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 4,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.0162,
"keyPass": 4,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.364296
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Robin Le Normand",
"firstName": "",
"lastName": "",
"slug": "robin-le-normand",
"shortName": "R. Le Normand",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 3699,
"id": 787751,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847670400,
"proposedMarketValueRaw": {
"value": 38000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0646\u0648\u0631\u0645\u0627\u0646\u062f, \u0631\u0648\u0628\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644. \u0646\u0648\u0631\u0645\u0627\u0646\u062f"
}
}
},
"teamId": 2836,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 72,
"accuratePass": 60,
"totalLongBalls": 10,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 3,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 83,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.1829,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00511169
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Jos\u00e9 Mar\u00eda Gim\u00e9nez",
"firstName": "",
"lastName": "",
"slug": "jose-maria-gimenez",
"shortName": "J. M. Gim\u00e9nez",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 4840,
"id": 325355,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 790560000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u064a\u0645\u064a\u0646\u064a\u0632, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u062e\u064a\u0645\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 70,
"accuratePass": 66,
"totalLongBalls": 10,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0548,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0108557
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "C\u00e9sar Azpilicueta",
"slug": "cesar-azpilicueta",
"shortName": "C. Azpilicueta",
"position": "D",
"jerseyNumber": "3",
"height": 178,
"userCount": 4921,
"id": 21555,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 620265600,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627, \u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0632\u0628\u064a\u0644\u064a\u0643\u0648\u064a\u062a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 5,
"challengeLost": 1,
"totalTackle": 3,
"minutesPlayed": 77,
"touches": 55,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.188548
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Samuel Lino",
"slug": "samuel-lino",
"shortName": "S. Lino",
"position": "M",
"jerseyNumber": "12",
"height": 178,
"userCount": 4501,
"id": 874705,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 945907200,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0644\u064a\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 2,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 4,
"wonContest": 1,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 67,
"touches": 51,
"rating": 7.4,
"possessionLostCtrl": 9,
"expectedGoals": 0.3746,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.134208
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo de Paul",
"firstName": "",
"lastName": "",
"slug": "rodrigo-de-paul",
"shortName": "R. de Paul",
"position": "M",
"jerseyNumber": "5",
"height": 180,
"userCount": 41272,
"id": 249399,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769737600,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648 \u062f\u064a \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u062f. \u0628\u0648\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 1,
"totalCross": 4,
"accurateCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"wasFouled": 2,
"minutesPlayed": 61,
"touches": 56,
"rating": 7.4,
"possessionLostCtrl": 15,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.52286
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Koke",
"firstName": "",
"lastName": "",
"slug": "koke",
"shortName": "Koke",
"position": "M",
"jerseyNumber": "6",
"height": 177,
"userCount": 4836,
"id": 84539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694828800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0643\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 65,
"accuratePass": 55,
"totalLongBalls": 7,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 5,
"challengeLost": 2,
"totalClearance": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.4,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.384311
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Conor Gallagher",
"firstName": "",
"lastName": "",
"slug": "conor-gallagher",
"shortName": "C. Gallagher",
"position": "M",
"jerseyNumber": "4",
"height": 182,
"userCount": 19823,
"id": 904970,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England",
"slug": "england"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949795200,
"proposedMarketValueRaw": {
"value": 49000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0644\u0627\u063a\u0631, \u0643\u0648\u0646\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u063a\u0627\u0644\u0627\u063a\u0631"
}
}
},
"teamId": 2836,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 2,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 7.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.6633,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.00991574
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antoine Griezmann",
"slug": "antoine-griezmann",
"shortName": "A. Griezmann",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 123633,
"id": 85859,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 669513600,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0631\u064a\u0632\u0645\u0627\u0646, \u0627\u0646\u0637\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0627. \u063a\u0631\u064a\u0632\u0645\u0627\u0646"
}
}
},
"teamId": 2836,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 12,
"accurateCross": 4,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 76,
"touches": 62,
"rating": 8.1,
"possessionLostCtrl": 21,
"expectedGoals": 0.6604,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.386327
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Alexander S\u00f8rloth",
"slug": "alexander-sorloth",
"shortName": "A. S\u00f8rloth",
"position": "F",
"jerseyNumber": "9",
"height": 194,
"userCount": 8934,
"id": 309078,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818121600,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u0644\u0648\u062b, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0631\u0644\u0648\u062b"
}
}
},
"teamId": 2836,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 1,
"bigChanceMissed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 61,
"touches": 28,
"rating": 6.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.7673,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0106613
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "\u00c1ngel Correa",
"firstName": "",
"lastName": "",
"slug": "angel-correa",
"shortName": "\u00c1. Correa",
"position": "F",
"jerseyNumber": "10",
"height": 171,
"userCount": 10815,
"id": 316152,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794707200,
"proposedMarketValueRaw": {
"value": 19700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u0622\u0646\u062c\u0644"
},
"shortNameTranslation": {
"ar": "\u0622. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 29,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0103743
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juli\u00e1n \u00c1lvarez",
"firstName": "",
"lastName": "",
"slug": "julian-alvarez",
"shortName": "J. \u00c1lvarez",
"position": "F",
"jerseyNumber": "19",
"height": 170,
"userCount": 167809,
"id": 944656,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 73000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0627\u0646 \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u0644\u0641\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2836,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"minutesPlayed": 29,
"touches": 10,
"rating": 7.1,
"possessionLostCtrl": 2,
"expectedGoals": 0.5196,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Rodrigo Riquelme",
"firstName": "",
"lastName": "",
"slug": "rodrigo-riquelme",
"shortName": "R. Riquelme",
"position": "M",
"jerseyNumber": "17",
"height": 174,
"userCount": 3287,
"id": 989113,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954633600,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u064a\u0644\u0645\u064a, \u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u064a\u0644\u0645\u064a"
}
}
},
"teamId": 2836,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"dispossessed": 1,
"minutesPlayed": 23,
"touches": 8,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giuliano Simeone",
"firstName": "",
"lastName": "",
"slug": "giuliano-simeone",
"shortName": "G. Simeone",
"position": "F",
"jerseyNumber": "22",
"height": 178,
"userCount": 4158,
"id": 1099352,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1040169600,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0645\u064a\u0648\u0646\u064a \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u062c\u0648\u0644\u064a\u0627\u0646\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"minutesPlayed": 14,
"touches": 6,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Reinildo Mandava",
"firstName": "",
"lastName": "",
"slug": "reinildo-mandava",
"shortName": "R. Mandava",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 3526,
"id": 831424,
"country": {
"alpha2": "MZ",
"alpha3": "MOZ",
"name": "Mozambique",
"slug": "mozambique"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 759110400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0646\u062f\u0627\u0641\u0627, \u0631\u064a\u0646\u064a\u0644\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0645\u0627\u0646\u062f\u0627\u0641\u0627"
}
}
},
"teamId": 2836,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 13,
"touches": 14,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Juan Musso",
"slug": "juan-musso",
"shortName": "J. Musso",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 3748,
"id": 263651,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 768182400,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0645\u0648\u0633\u0648"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0633\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Antonio Gomis",
"firstName": "",
"lastName": "",
"slug": "antonio-gomis",
"shortName": "A. Gomis",
"position": "G",
"jerseyNumber": "31",
"height": 191,
"userCount": 297,
"id": 1156733,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053388800,
"proposedMarketValueRaw": {
"value": 165000,
"currency": "EUR"
}
},
"teamId": 24326,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Cl\u00e9ment Lenglet",
"slug": "clement-lenglet",
"shortName": "C. Lenglet",
"position": "D",
"jerseyNumber": "15",
"height": 186,
"userCount": 7027,
"id": 580550,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 803347200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0646\u062c\u0644\u064a\u062a, \u0643\u0644\u064a\u0645\u0646\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0644\u064a\u0646\u062c\u0644\u064a\u062a"
}
}
},
"teamId": 2836,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javi Gal\u00e1n",
"slug": "javi-galan",
"shortName": "J. Gal\u00e1n",
"position": "D",
"jerseyNumber": "21",
"height": 172,
"userCount": 1602,
"id": 825133,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 785203200,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u062c\u0627\u0644\u0627\u0646 \u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c. \u062c\u064a\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Nahuel Molina",
"slug": "nahuel-molina",
"shortName": "N. Molina",
"position": "D",
"jerseyNumber": "16",
"height": 175,
"userCount": 13914,
"id": 831799,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891820800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u0648\u0633\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0646. \u0648\u0633\u064a\u0631\u0648"
}
}
},
"teamId": 2836,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Axel Witsel",
"firstName": "",
"lastName": "",
"slug": "axel-witsel",
"shortName": "A. Witsel",
"position": "D",
"jerseyNumber": "20",
"height": 186,
"userCount": 5316,
"id": 35612,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 600566400,
"proposedMarketValueRaw": {
"value": 3700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u062a\u0633\u0644, \u0623\u0643\u0633\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0648\u064a\u062a\u0633\u0644"
}
}
},
"teamId": 2836,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Javier Serrano",
"slug": "javier-serrano",
"shortName": "J. Serrano",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 293,
"id": 1019320,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042675200,
"proposedMarketValueRaw": {
"value": 525000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0641\u064a \u0633\u064a\u0631\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u064a\u0631\u0627\u0646\u0648"
}
}
},
"teamId": 24326,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Atl\u00e9tico Madrid"
},
{
"player": {
"name": "Giorgi Mamardashvili",
"slug": "giorgi-mamardashvili",
"shortName": "G. Mamardashvili",
"position": "G",
"jerseyNumber": "25",
"height": 200,
"userCount": 6767,
"id": 930997,
"country": {
"alpha2": "GE",
"alpha3": "GEO",
"name": "Georgia",
"slug": "georgia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970185600,
"proposedMarketValueRaw": {
"value": 47000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0648\u0631\u062c\u064a \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0627\u0645\u0627\u0631\u062f\u0627\u0634\u0641\u064a\u0644\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 16,
"totalLongBalls": 17,
"accurateLongBalls": 8,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"goalsPrevented": 0.0947
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dimitri Foulquier",
"firstName": "",
"lastName": "",
"slug": "dimitri-foulquier",
"shortName": "D. Foulquier",
"position": "D",
"jerseyNumber": "20",
"height": 183,
"userCount": 312,
"id": 151138,
"country": {
"alpha2": "GP",
"alpha3": "GLP",
"name": "Guadeloupe",
"slug": "guadeloupe"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 732844800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0644\u0643\u064a\u064a\u0647, \u062f\u064a\u0645\u064a\u062a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u0648\u0644\u0643\u064a\u064a\u0647"
}
}
},
"teamId": 2828,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 25,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 2,
"totalClearance": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 71,
"touches": 46,
"rating": 6.6,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00531723
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "C\u00e9sar T\u00e1rrega",
"slug": "cesar-tarrega",
"shortName": "C. T\u00e1rrega",
"position": "D",
"jerseyNumber": "15",
"height": 193,
"userCount": 263,
"id": 996928,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 46,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 6,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 68,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0114319
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Cristhian Mosquera",
"firstName": "Cristhian Mosquera",
"lastName": "",
"slug": "cristhian-mosquera",
"shortName": "C. Mosquera",
"position": "D",
"jerseyNumber": "3",
"height": 188,
"userCount": 1064,
"id": 1144630,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1088294400,
"proposedMarketValueRaw": {
"value": 29000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mosquera \u060c Cristhian"
},
"shortNameTranslation": {
"ar": "M. \u060c Cristhian"
}
}
},
"teamId": 2828,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 48,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 3,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 63,
"rating": 6.4,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0118878
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Thierry Correia",
"slug": "correia-thierry",
"shortName": "T. Correia",
"position": "D",
"jerseyNumber": "12",
"height": 176,
"userCount": 789,
"id": 851282,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920937600,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u064a\u0627, \u062a\u064a\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 43,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 78,
"rating": 6.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.0226,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.043764
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Diego L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "diego-lopez",
"shortName": "D. L\u00f3pez",
"position": "M",
"jerseyNumber": "16",
"height": 172,
"userCount": 927,
"id": 998950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1021248000,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u0646\u0648\u062c\u0648\u064a\u0631\u0648\u0644 \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0646. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 23,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 1,
"totalContest": 6,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6,
"possessionLostCtrl": 15,
"keyPass": 1,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.0270054
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Hugo Guillam\u00f3n",
"firstName": "",
"lastName": "",
"slug": "hugo-guillamon",
"shortName": "H. Guillam\u00f3n",
"position": "M",
"jerseyNumber": "6",
"height": 178,
"userCount": 657,
"id": 855830,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949276800,
"proposedMarketValueRaw": {
"value": 8199999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u064a\u0627\u0645\u0648\u0646\u060c \u0647\u0648\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u063a. \u0647\u0648\u063a\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 23,
"rating": 6.4,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0050191
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Pepelu",
"slug": "pepelu",
"shortName": "Pepelu",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1774,
"id": 826948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 20000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u0628\u064a\u0644\u0648"
}
}
},
"teamId": 2828,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 51,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"totalCross": 3,
"aerialLost": 2,
"duelLost": 3,
"dispossessed": 1,
"totalClearance": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 6.9,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0519975
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Luis Rioja",
"slug": "luis-rioja",
"shortName": "L. Rioja",
"position": "M",
"jerseyNumber": "22",
"height": 173,
"userCount": 722,
"id": 900433,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 750729600,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0648\u062e\u0627, \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u064a\u0648\u062e\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"wasFouled": 2,
"minutesPlayed": 70,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00885626
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Javier Guerra",
"slug": "javier-guerra",
"shortName": "J. Guerra",
"position": "M",
"jerseyNumber": "8",
"height": 187,
"userCount": 1162,
"id": 1122610,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052784000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u063a\u064a\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u063a\u064a\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 25,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 2,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 2,
"minutesPlayed": 79,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.0451,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0171843
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Dani G\u00f3mez",
"slug": "dani-gomez",
"shortName": "D. G\u00f3mez",
"position": "F",
"jerseyNumber": "17",
"height": 177,
"userCount": 278,
"id": 888930,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901756800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0645\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2828,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 9,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 79,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00514721
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Enzo Barrenechea",
"firstName": "",
"lastName": "",
"slug": "enzo-barrenechea",
"shortName": "E. Barrenechea",
"position": "M",
"jerseyNumber": "5",
"height": 186,
"userCount": 2828,
"id": 1087316,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990489600,
"proposedMarketValueRaw": {
"value": 6900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u0632\u0648 \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u0627\u0631\u0646\u064a\u0634\u064a\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 40,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 43,
"rating": 6.7,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0269027
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Sergi Can\u00f3s",
"slug": "sergi-canos",
"shortName": "S. Can\u00f3s",
"position": "M",
"jerseyNumber": "7",
"height": 173,
"userCount": 511,
"id": 790833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0646\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0646\u064a\u0648\u0633"
}
}
},
"teamId": 2828,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 20,
"touches": 21,
"rating": 6.7,
"possessionLostCtrl": 7,
"expectedGoals": 0.0508,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00898431
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Jes\u00fas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "jesus-vazquez",
"shortName": "J. V\u00e1zquez",
"position": "D",
"jerseyNumber": "21",
"height": 182,
"userCount": 348,
"id": 996929,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1041465600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u064a\u0632 \u060c \u064a\u0633\u0648\u0639"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u064a\u0633\u0648\u0639"
}
}
},
"teamId": 2828,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 19,
"touches": 12,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Germ\u00e1n Valera",
"slug": "german-valera",
"shortName": "V. Germain",
"position": "M",
"jerseyNumber": "30",
"height": 170,
"userCount": 263,
"id": 962710,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1016236800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u064a\u0631\u0627, \u062c\u064a\u0631\u0645\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u0641\u0627\u0644\u064a\u0631\u0627"
}
}
},
"teamId": 2828,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"minutesPlayed": 11,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0274,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00723069
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Mart\u00edn Tej\u00f3n",
"slug": "martin-tejon",
"shortName": "M. Tej\u00f3n",
"position": "M",
"jerseyNumber": "32",
"height": 165,
"userCount": 51,
"id": 1462786,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1081728000,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00567153
},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Stole Dimitrievski",
"firstName": "",
"lastName": "",
"slug": "stole-dimitrievski",
"shortName": "S. Dimitrievski",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 736,
"id": 97951,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756777600,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u062a\u0648\u0644 \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u064a\u0645\u064a\u062a\u0631\u064a\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Yarek Gasiorowski",
"firstName": "Yarek Gasiorowski",
"slug": "gasiorowski-yarek",
"shortName": "Y. Gasiorowski",
"position": "D",
"jerseyNumber": "24",
"height": 190,
"userCount": 1089,
"id": 1184317,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1105488000,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
}
},
"teamId": 2828,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Maximiliano Caufriez",
"firstName": "",
"lastName": "",
"slug": "maximiliano-caufriez",
"shortName": "M. Caufriez",
"position": "D",
"jerseyNumber": "2",
"height": 189,
"userCount": 176,
"id": 800349,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856051200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u0633\u064a\u0645\u064a\u0644\u064a\u0627\u0646\u0648 \u0643\u0648\u0641\u0631\u064a\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0641\u0631\u064a\u064a"
}
}
},
"teamId": 2828,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
},
{
"player": {
"name": "Warren Madrigal",
"firstName": "Warren Madrigal",
"slug": "madrigal-warren",
"shortName": "W. Madrigal",
"position": "F",
"jerseyNumber": "42",
"height": 185,
"userCount": 663,
"id": 1102593,
"country": {
"alpha2": "CR",
"alpha3": "CRI",
"name": "Costa Rica",
"slug": "costa-rica"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090627200,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 24337,
"shirtNumber": 42,
"jerseyNumber": "42",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Valencia"
}
]
[
{
"player": {
"name": "Jasper Cillessen",
"firstName": "",
"lastName": "",
"slug": "jasper-cillessen",
"shortName": "J. Cillessen",
"position": "G",
"jerseyNumber": "1",
"height": 185,
"userCount": 1797,
"id": 123865,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 609206400,
"proposedMarketValueRaw": {
"value": 920000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0633\u0646, \u062c\u0627\u0633\u0628\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u064a\u0644\u064a\u0633\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 22,
"totalLongBalls": 12,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalClearance": 4,
"goodHighClaim": 1,
"saves": 1,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.2,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.312
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marvin Park",
"firstName": "",
"lastName": "",
"slug": "park-marvin",
"shortName": "M. Park",
"position": "D",
"jerseyNumber": "2",
"height": 177,
"userCount": 806,
"id": 960401,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 952387200,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0641\u064a\u0646"
}
}
},
"teamId": 6577,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 32,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 1,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 2,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 70,
"rating": 6.3,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0231064
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alex Su\u00e1rez",
"slug": "alex-suarez",
"shortName": "A. Su\u00e1rez",
"position": "D",
"jerseyNumber": "4",
"height": 179,
"userCount": 293,
"id": 914848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 725846400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0633\u0648\u0627\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 32,
"totalLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 45,
"touches": 43,
"rating": 6.3,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Scott McKenna",
"firstName": "",
"lastName": "",
"slug": "scott-mckenna",
"shortName": "S. McKenna",
"position": "D",
"jerseyNumber": "15",
"height": 188,
"userCount": 475,
"id": 358108,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 847756800,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0643\u0648\u062a \u0645\u0627\u0643\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0645\u0627\u0643\u064a\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 53,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelWon": 5,
"totalClearance": 3,
"totalTackle": 2,
"minutesPlayed": 77,
"touches": 67,
"rating": 6.5,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Mika M\u00e1rmol",
"firstName": "",
"lastName": "",
"slug": "mika-marmol",
"shortName": "M. M\u00e1rmol",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 867,
"id": 979146,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 993945600,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0643\u0627 \u0645\u0627\u0631\u0645\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0627\u0631\u0645\u0648\u0644"
}
}
},
"teamId": 6577,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 84,
"accuratePass": 70,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 3,
"interceptionWon": 2,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 106,
"rating": 6.8,
"possessionLostCtrl": 21,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0294587
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Sandro Ram\u00edrez",
"slug": "sandro-ramirez",
"shortName": "S. Ram\u00edrez",
"position": "F",
"jerseyNumber": "19",
"height": 175,
"userCount": 988,
"id": 188407,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805248000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0645\u064a\u0631\u064a\u0632, \u0633\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0633. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 15,
"goalAssist": 0,
"totalCross": 8,
"accurateCross": 5,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 38,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.0811,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0843255
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Javier Mu\u00f1oz",
"slug": "javier-munoz",
"shortName": "J. Mu\u00f1oz",
"position": "M",
"jerseyNumber": "5",
"height": 179,
"userCount": 286,
"id": 353154,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"interceptionWon": 1,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 29,
"rating": 6.2,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jos\u00e9 Campa\u00f1a",
"slug": "jose-campana",
"shortName": "J. Campa\u00f1a",
"position": "M",
"jerseyNumber": "8",
"height": 179,
"userCount": 328,
"id": 96373,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 738806400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0645\u0628\u0627\u0646\u0627, \u062e\u0648\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0645\u0628\u0627\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0117431
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Kirian Rodr\u00edguez",
"slug": "kirian-rodriguez",
"shortName": "K. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "20",
"height": 180,
"userCount": 748,
"id": 964985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 825984000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0631\u064a\u0627\u0646 \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0643. \u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 107,
"accuratePass": 89,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 2,
"aerialLost": 3,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 5,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 121,
"rating": 6.8,
"possessionLostCtrl": 22,
"expectedGoals": 0.8113,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.168158
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Alberto Moleiro",
"firstName": "",
"lastName": "",
"slug": "alberto-moleiro",
"shortName": "A. Moleiro",
"position": "M",
"jerseyNumber": "10",
"height": 172,
"userCount": 2408,
"id": 1012444,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064880000,
"proposedMarketValueRaw": {
"value": 22000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u0631\u062a\u0648 \u0645\u0648\u0644\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0644\u064a\u0631\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.3,
"possessionLostCtrl": 16,
"expectedGoals": 0.167,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.289179
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Oliver McBurnie",
"slug": "oliver-mcburnie",
"shortName": "O. McBurnie",
"position": "F",
"jerseyNumber": "16",
"height": 188,
"userCount": 767,
"id": 367228,
"country": {
"alpha2": "SX",
"alpha3": "SCO",
"name": "Scotland",
"slug": "scotland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833846400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643 \u0628\u0648\u0631\u0646\u064a, \u0623\u0648\u0644\u064a\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645. \u0628\u0648\u0631\u0646\u064a"
}
}
},
"teamId": 6577,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 2,
"totalContest": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 77,
"touches": 24,
"rating": 6.6,
"possessionLostCtrl": 6,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0420632
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "\u00c1lex Mu\u00f1oz",
"slug": "alex-munoz",
"shortName": "\u00c1. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 250,
"id": 273227,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 775526400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 5,
"challengeLost": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 54,
"rating": 7.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.1879,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0427685
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Fabio Gonz\u00e1lez",
"slug": "fabio-gonzalez",
"shortName": "F. Gonz\u00e1lez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 51,
"id": 894477,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855705600,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u0627\u0632\u0644\u064a\u0633"
}
}
},
"teamId": 6577,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"shotOffTarget": 2,
"fouls": 1,
"minutesPlayed": 45,
"touches": 55,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0736,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0165178
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "F\u00e1bio Silva",
"slug": "fabio-silva",
"shortName": "F. Silva",
"position": "F",
"jerseyNumber": "37",
"height": 185,
"userCount": 3709,
"id": 954076,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027036800,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0628\u064a\u0648 \u0633\u064a\u0644\u0641\u0627"
},
"shortNameTranslation": {
"ar": "\u0641. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 27,
"touches": 14,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0469,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0117634
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Benito Ram\u00edrez",
"slug": "benito-ramirez",
"shortName": "B. Ram\u00edrez",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 87,
"id": 868223,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805420800,
"proposedMarketValueRaw": {
"value": 650000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u062a\u0648 \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0631\u0627\u0645\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 6577,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 2,
"blockedScoringAttempt": 2,
"minutesPlayed": 13,
"touches": 19,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0775,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00625228
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Jaime Mata",
"slug": "jaime-mata",
"shortName": "J. Mata",
"position": "F",
"jerseyNumber": "17",
"height": 185,
"userCount": 529,
"id": 351140,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 593654400,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062a\u0627, \u062e\u0627\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0645\u0627\u062a\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"minutesPlayed": 13,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.012635
},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Dinko Horka\u0161",
"firstName": "",
"lastName": "",
"slug": "dinko-horkas",
"shortName": "D. Horka\u0161",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 270,
"id": 855922,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Viti Rozada",
"slug": "viti-rozada",
"shortName": "V. Rozada",
"position": "D",
"jerseyNumber": "18",
"height": 171,
"userCount": 165,
"id": 1031499,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874368000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Juanma Herzog",
"slug": "juanma-herzog",
"shortName": "J. Herzog",
"position": "D",
"jerseyNumber": "28",
"height": 186,
"userCount": 185,
"id": 1513451,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1084406400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Manuel Fuster",
"firstName": "",
"lastName": "",
"slug": "manuel-fuster",
"shortName": "M. Fuster",
"position": "M",
"jerseyNumber": "14",
"height": 169,
"userCount": 268,
"id": 916654,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 877478400,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
}
},
"teamId": 6577,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Enzo Loiodice",
"slug": "loiodice-enzo",
"shortName": "E. Loiodice",
"position": "M",
"jerseyNumber": "12",
"height": 176,
"userCount": 379,
"id": 933426,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0632\u0648 \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0625. \u0644\u0648\u064a\u0648\u062f\u064a\u062a\u0634"
}
}
},
"teamId": 6577,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "D\u00e1rio Essugo",
"slug": "dario-essugo",
"shortName": "D. Essugo",
"position": "M",
"jerseyNumber": "29",
"height": 178,
"userCount": 1578,
"id": 1110006,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1110758400,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u064a\u0648 \u0625\u064a\u0633\u0648\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0625\u064a\u0633\u0648\u062c\u0648"
}
}
},
"teamId": 6577,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Marc Cardona",
"slug": "marc-cardona",
"shortName": "M. Cardona",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 240,
"id": 841854,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 805161600,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u062f\u0648\u0646\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 6577,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Las Palmas"
},
{
"player": {
"name": "Julen Agirrezabala",
"firstName": "",
"lastName": "",
"slug": "julen-agirrezabala",
"shortName": "J. Agirrezabala",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 791,
"id": 1014412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 977788800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0644\u064a\u0646 \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u062c\u064a\u0631\u0648\u064a\u0648\u0627\u0628\u0627\u0644\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 17,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 2,
"totalClearance": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"punches": 1,
"minutesPlayed": 90,
"touches": 32,
"rating": 7.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": -0.7138
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00d3scar de Marcos",
"firstName": "",
"lastName": "",
"slug": "oscar-de-marcos",
"shortName": "\u00d3. de Marcos",
"position": "D",
"jerseyNumber": "18",
"height": 180,
"userCount": 709,
"id": 52663,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608515200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0645\u0627\u0631\u0643\u0648\u0633, \u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f. \u0645\u0627\u0631\u0643\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 31,
"accuratePass": 21,
"totalLongBalls": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 77,
"touches": 51,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00747258
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Daniel Vivian",
"firstName": "",
"lastName": "",
"slug": "daniel-vivian",
"shortName": "D. Vivian",
"position": "D",
"jerseyNumber": "3",
"height": 183,
"userCount": 1936,
"id": 910978,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 931132800,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0641\u064a\u0627\u0646, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641\u064a\u0641\u064a\u0627\u0646"
}
}
},
"teamId": 2825,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 7,
"totalClearance": 9,
"outfielderBlock": 3,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.3,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00686956
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Aitor Paredes",
"firstName": "",
"lastName": "",
"slug": "aitor-paredes",
"shortName": "A. Paredes",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 687,
"id": 959872,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956966400,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062f\u064a\u0633 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 23,
"totalLongBalls": 8,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 5,
"clearanceOffLine": 1,
"outfielderBlock": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.7,
"possessionLostCtrl": 12,
"expectedGoals": 0.8723,
"ratingVersions": {
"original": 7.7,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Yuri Berchiche",
"slug": "yuri-berchiche",
"shortName": "Y. Berchiche",
"position": "D",
"jerseyNumber": "17",
"height": 181,
"userCount": 920,
"id": 84531,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 634608000,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0634\u064a\u0634, \u064a\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0628\u0631\u0634\u064a\u0634"
}
}
},
"teamId": 2825,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 33,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 3,
"duelWon": 7,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 7,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.1,
"possessionLostCtrl": 16,
"expectedGoals": 0.0769,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00777298
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Jauregizar",
"firstName": "",
"lastName": "",
"slug": "mikel-jauregizar",
"shortName": "M. Jauregizar",
"position": "M",
"jerseyNumber": "23",
"height": 177,
"userCount": 395,
"id": 1495844,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068681600,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 16,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 2,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 56,
"touches": 32,
"rating": 6,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00520755
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1igo Ruiz de Galarreta",
"slug": "inigo-ruiz-de-galarreta",
"shortName": "I. R. d. Galarreta",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 654,
"id": 96365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 744595200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0632 \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0631. \u062f\u064a\u062c\u0627\u0644\u0627\u0631\u064a\u062a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 20,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 59,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00877628
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "I\u00f1aki Williams",
"slug": "inaki-williams",
"shortName": "I. Williams",
"position": "M",
"jerseyNumber": "9",
"height": 186,
"userCount": 23665,
"id": 783374,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 771638400,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u0627\u0645\u0632, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0648\u0644\u064a\u0627\u0645\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 16,
"totalLongBalls": 1,
"goalAssist": 3,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7.7,
"possessionLostCtrl": 23,
"expectedGoals": 0.5394,
"keyPass": 3,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0971797
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Oihan Sancet",
"firstName": "",
"lastName": "",
"slug": "oihan-sancet",
"shortName": "O. Sancet",
"position": "M",
"jerseyNumber": "8",
"height": 188,
"userCount": 2466,
"id": 966801,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0633\u064a\u062a, \u0623\u0648\u0647\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0627\u0646\u0633\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 71,
"touches": 38,
"rating": 7,
"possessionLostCtrl": 12,
"expectedGoals": 0.4436,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0328926
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Williams",
"firstName": "",
"lastName": "",
"slug": "nico-williams",
"shortName": "N. Williams",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 67383,
"id": 1085400,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 76000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u064a\u0644\u064a\u0627\u0645\u0632\u060c \u0646\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0648. \u0646\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 9,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 71,
"touches": 44,
"rating": 7.6,
"possessionLostCtrl": 17,
"expectedGoals": 0.1824,
"keyPass": 3,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0674307
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Gorka Guruzeta",
"slug": "gorka-guruzeta",
"shortName": "G. Guruzeta",
"position": "F",
"jerseyNumber": "12",
"height": 188,
"userCount": 2046,
"id": 605672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 842486400,
"proposedMarketValueRaw": {
"value": 16600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0631\u0648\u0632\u064a\u062a, \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u063a\u0648\u0631\u0648\u0632\u064a\u062a"
}
}
},
"teamId": 2825,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 59,
"touches": 32,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.0341,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.013673
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Be\u00f1at Prados",
"firstName": "",
"lastName": "",
"slug": "benat-prados",
"shortName": "B. Prados",
"position": "M",
"jerseyNumber": "24",
"height": 179,
"userCount": 509,
"id": 1012409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981590400,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627\u062a \u0628\u0631\u0627\u062f\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0628\u0631\u0627\u062f\u0648\u0633"
}
}
},
"teamId": 2825,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"totalContest": 1,
"outfielderBlock": 1,
"minutesPlayed": 31,
"touches": 13,
"rating": 6.3,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Mikel Vesga",
"firstName": "",
"lastName": "",
"slug": "mikel-vesga",
"shortName": "M. Vesga",
"position": "M",
"jerseyNumber": "6",
"height": 191,
"userCount": 452,
"id": 359742,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 734227200,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0633\u063a\u0627, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u064a\u0633\u063a\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"interceptionWon": 1,
"minutesPlayed": 31,
"touches": 16,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lex Berenguer",
"slug": "alex-berenguer",
"shortName": "\u00c1. Berenguer",
"position": "M",
"jerseyNumber": "7",
"height": 175,
"userCount": 1233,
"id": 592012,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 804816000,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0646\u063a\u0648\u064a\u0631"
}
}
},
"teamId": 2825,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 11,
"rating": 7,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.365208
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai G\u00f3mez",
"slug": "unai-gomez",
"shortName": "U. G\u00f3mez",
"position": "M",
"jerseyNumber": "20",
"height": 183,
"userCount": 516,
"id": 1391375,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053820800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0646\u0627\u064a \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"minutesPlayed": 19,
"touches": 10,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Andoni Gorosabel",
"slug": "andoni-gorosabel",
"shortName": "A. Gorosabel",
"position": "D",
"jerseyNumber": "2",
"height": 174,
"userCount": 392,
"id": 866810,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839116800,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644, \u0623\u0646\u062f\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u0648\u0631\u0648\u0633\u0627\u0628\u0644"
}
}
},
"teamId": 2825,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 13,
"touches": 8,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Alex Padilla",
"firstName": "\u00c1lex Padilla",
"lastName": "",
"slug": "padilla-alex",
"shortName": "\u00c1. Padilla",
"position": "G",
"jerseyNumber": "26",
"height": 190,
"userCount": 1155,
"id": 1155116,
"country": {
"alpha2": "MX",
"alpha3": "MEX",
"name": "Mexico",
"slug": "mexico"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1062374400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00cd\u00f1igo Lekue",
"slug": "inigo-lekue",
"shortName": "\u00cd. Lekue",
"position": "D",
"jerseyNumber": "15",
"height": 180,
"userCount": 254,
"id": 801837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 736473600,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u064a\u0643\u0648, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0644\u064a\u0643\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Adama Boiro",
"firstName": "Adama Boiro",
"slug": "adama-boiro",
"shortName": "A. Boiro",
"position": "D",
"jerseyNumber": "32",
"height": 182,
"userCount": 325,
"id": 1398511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1024704000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Unai N\u00fa\u00f1ez",
"slug": "unai-nunez",
"shortName": "U. N\u00fa\u00f1ez",
"position": "D",
"jerseyNumber": "14",
"height": 186,
"userCount": 593,
"id": 892521,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854582400,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0648\u0646\u064a\u064a\u0632, \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u0648\u0646\u064a\u064a\u0632"
}
}
},
"teamId": 2825,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Nico Serrano",
"firstName": "",
"lastName": "",
"slug": "nico-serrano",
"shortName": "N. Serrano",
"position": "M",
"jerseyNumber": "22",
"height": 178,
"userCount": 307,
"id": 1019318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
}
},
"teamId": 2825,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "Ander Herrera",
"slug": "ander-herrera",
"shortName": "A. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 182,
"userCount": 2447,
"id": 82474,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 619056000,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u062f\u0631 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2825,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
},
{
"player": {
"name": "\u00c1lvaro Djal\u00f3",
"firstName": "\u00c1lvaro Djal\u00f3",
"lastName": "",
"slug": "alvaro-djalo",
"shortName": "\u00c1. Djal\u00f3",
"position": "M",
"jerseyNumber": "11",
"height": 176,
"userCount": 1016,
"id": 1160960,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934761600,
"proposedMarketValueRaw": {
"value": 16200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0641\u0627\u0631\u0648 \u062f\u062c\u0627\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u062c\u0627\u0644\u0648"
}
}
},
"teamId": 2825,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Athletic Club"
}
]
[
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 36,
"totalLongBalls": 8,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 5,
"saves": 5,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 7.2,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": -0.5164
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 28,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 2,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 85,
"touches": 51,
"rating": 6,
"possessionLostCtrl": 7,
"expectedGoals": 0.0203,
"ratingVersions": {
"original": 6,
"alternative": null
},
"expectedAssists": 0.00637654
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 49,
"totalLongBalls": 9,
"accurateLongBalls": 7,
"goalAssist": 0,
"duelLost": 4,
"challengeLost": 1,
"dispossessed": 2,
"totalClearance": 4,
"interceptionWon": 2,
"errorLeadToAGoal": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 5.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 5.6,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 9,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00534056
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 31,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 2,
"duelLost": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 17,
"expectedGoals": 0.0295,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.164473
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 48,
"accuratePass": 43,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0130949
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 11,
"duelWon": 5,
"challengeLost": 4,
"dispossessed": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.3,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0571434
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"interceptionWon": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 54,
"touches": 32,
"rating": 6.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.5484,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0201277
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"minutesPlayed": 69,
"touches": 19,
"rating": 6.2,
"possessionLostCtrl": 4,
"expectedGoals": 0.0247,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0107171
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"totalTackle": 1,
"totalOffside": 2,
"minutesPlayed": 55,
"touches": 15,
"rating": 6.2,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0965072
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 69,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 3,
"expectedGoals": 0.0943,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0087571
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 21,
"accuratePass": 16,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 36,
"touches": 32,
"rating": 6.6,
"possessionLostCtrl": 11,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0590379
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"totalTackle": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 35,
"touches": 8,
"rating": 7.1,
"possessionLostCtrl": 2,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.336288
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 21,
"touches": 7,
"rating": 6.7,
"expectedGoals": 0.0631,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Cristhian Stuani",
"slug": "cristhian-stuani",
"shortName": "C. Stuani",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1860,
"id": 32048,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 529459200,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0631\u064a\u0633\u062a\u064a\u0627\u0646 \u0633\u062a\u0648\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0633\u062a\u0648\u0627\u0646\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalOffside": 1,
"minutesPlayed": 21,
"touches": 5,
"rating": 7.4,
"possessionLostCtrl": 1,
"expectedGoals": 0.5126,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"minutesPlayed": 12,
"touches": 7,
"rating": 6.7,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.105087
},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juan Carlos",
"slug": "juan-carlos",
"shortName": "J. Carlos",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 211,
"id": 83708,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 569635200,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0627\u0631\u0644\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0627\u0631\u0644\u0648\u0633"
}
}
},
"teamId": 24264,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Ra\u00fal Mart\u00ednez",
"firstName": "Ra\u00fal Mart\u00ednez",
"slug": "raul-martinez",
"shortName": "R. Mart\u00ednez",
"position": "M",
"jerseyNumber": "37",
"userCount": 29,
"id": 1937396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014422400
},
"teamId": 368693,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Bojan Miovski",
"firstName": "",
"lastName": "",
"slug": "bojan-miovski",
"shortName": "B. Miovski",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 1363,
"id": 945768,
"country": {
"alpha2": "MK",
"alpha3": "MKD",
"name": "North Macedonia",
"slug": "north-macedonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 930182400,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Girona FC"
},
{
"player": {
"name": "Marc-Andr\u00e9 ter Stegen",
"firstName": "",
"lastName": "",
"slug": "marc-andre-ter-stegen",
"shortName": "M.-A ter Stegen",
"position": "G",
"jerseyNumber": "1",
"height": 187,
"userCount": 73119,
"id": 88625,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 704592000,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631 \u0633\u062a\u064a\u062c\u064a\u0646, \u0645\u0627\u0631\u0643 \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623. \u062a. \u0633\u062a\u064a\u062c\u064a\u0646"
}
}
},
"teamId": 2817,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 41,
"accuratePass": 38,
"totalLongBalls": 11,
"accurateLongBalls": 8,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.2612
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Jules Kound\u00e9",
"firstName": "",
"lastName": "",
"slug": "jules-kounde",
"shortName": "J. Kound\u00e9",
"position": "D",
"jerseyNumber": "23",
"height": 180,
"userCount": 66426,
"id": 827212,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 910828800,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a, \u062c\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0643\u0648\u0646\u062f\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 45,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.6,
"possessionLostCtrl": 6,
"expectedGoals": 0.0314,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0694954
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau Cubars\u00ed",
"firstName": "Pau Cubars\u00ed",
"lastName": "",
"slug": "pau-cubarsi",
"shortName": "P. Cubars\u00ed",
"position": "D",
"jerseyNumber": "2",
"height": 184,
"userCount": 53004,
"id": 1402913,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1169424000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 42,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"minutesPlayed": 61,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00577764
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1igo Mart\u00ednez",
"slug": "inigo-martinez",
"shortName": "I. Mart\u00ednez",
"position": "D",
"jerseyNumber": "5",
"height": 181,
"userCount": 22254,
"id": 173883,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 674438400,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627, \u0627\u0646\u064a\u062c\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 74,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 2,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 91,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0163,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0243849
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"shortName": "A. Balde",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 51676,
"id": 997035,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1066435200,
"proposedMarketValueRaw": {
"value": 44000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0644\u062f\u064a \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0623\u0644\u064a\u062e\u0627\u0646\u062f\u0631\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 27,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 10,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"totalTackle": 2,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.0896,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.019869
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Marc Casad\u00f3",
"slug": "marc-casado",
"shortName": "M. Casad\u00f3",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 22229,
"id": 1000483,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063497600,
"proposedMarketValueRaw": {
"value": 14500000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 47,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 7.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.0192,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.307471
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pedri",
"firstName": "",
"lastName": "",
"slug": "pedri",
"shortName": "Pedri",
"position": "M",
"jerseyNumber": "8",
"height": 174,
"userCount": 178786,
"id": 992587,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1038182400,
"proposedMarketValueRaw": {
"value": 88000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 30,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"minutesPlayed": 69,
"touches": 48,
"rating": 7.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.2095,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0231208
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Lamine Yamal",
"firstName": "Lamine Yamal",
"slug": "lamine-yamal",
"shortName": "Lamine Yamal",
"position": "F",
"jerseyNumber": "19",
"height": 180,
"userCount": 401546,
"id": 1402912,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1184284800,
"proposedMarketValueRaw": {
"value": 161000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u0645\u064a\u0646 \u064a\u0627\u0645\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0644. \u064a\u0627\u0645\u0627\u0644"
}
}
},
"teamId": 2817,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 24,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 6,
"duelWon": 10,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 4,
"goals": 2,
"totalTackle": 6,
"wasFouled": 3,
"minutesPlayed": 89,
"touches": 60,
"rating": 9.5,
"possessionLostCtrl": 18,
"expectedGoals": 0.7123,
"keyPass": 1,
"ratingVersions": {
"original": 9.5,
"alternative": null
},
"expectedAssists": 0.116912
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Dani Olmo",
"slug": "dani-olmo",
"shortName": "D. Olmo",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 82401,
"id": 789071,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894499200,
"proposedMarketValueRaw": {
"value": 58000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0644\u0645\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0623\u0648\u0644\u0645\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 25,
"accuratePass": 20,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 39,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0112,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.076064
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Raphinha",
"slug": "raphinha",
"shortName": "Raphinha",
"position": "F",
"jerseyNumber": "11",
"height": 176,
"userCount": 204533,
"id": 831005,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 850521600,
"proposedMarketValueRaw": {
"value": 54000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u0641\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 3,
"wonContest": 1,
"bigChanceCreated": 2,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 54,
"rating": 7.6,
"possessionLostCtrl": 21,
"expectedGoals": 0.0115,
"keyPass": 5,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.278464
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Robert Lewandowski",
"slug": "robert-lewandowski",
"shortName": "R. Lewandowski",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 322929,
"id": 41789,
"country": {
"alpha2": "PL",
"alpha3": "POL",
"name": "Poland",
"slug": "poland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 588124800,
"proposedMarketValueRaw": {
"value": 14000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0644\u064a\u0641\u0627\u0646\u062f\u0648\u0641\u0633\u0643\u064a"
}
}
},
"teamId": 2817,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 14,
"goalAssist": 1,
"duelWon": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"wasFouled": 1,
"minutesPlayed": 69,
"touches": 24,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.3031,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0228333
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Eric Garc\u00eda",
"slug": "eric-garcia",
"shortName": "E. Garc\u00eda",
"position": "D",
"jerseyNumber": "24",
"height": 182,
"userCount": 17471,
"id": 876214,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627, \u0627\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0627. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 29,
"touches": 14,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0150733
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Hector Fort",
"firstName": "H\u00e9ctor Fort",
"slug": "fort-hector",
"shortName": "H. Fort",
"position": "D",
"jerseyNumber": "32",
"height": 185,
"userCount": 19638,
"id": 1402908,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1154476800,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"totalContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"minutesPlayed": 29,
"touches": 18,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0218,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pau V\u00edctor",
"firstName": "",
"lastName": "",
"slug": "pau-victor",
"shortName": "P. V\u00edctor",
"position": "F",
"jerseyNumber": "18",
"height": 182,
"userCount": 20945,
"id": 1031567,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1006819200,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062f\u064a\u0644\u062c\u0627\u062f\u0648 \u060c \u0628\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u062f. \u060c \u0628\u0627\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.4535,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Ferran Torres",
"slug": "ferran-torres",
"shortName": "F. Torres",
"position": "F",
"jerseyNumber": "7",
"height": 185,
"userCount": 51960,
"id": 855833,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 951782400,
"proposedMarketValueRaw": {
"value": 32000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a\u0633, \u0641\u064a\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2817,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 17,
"touches": 10,
"rating": 5.9,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 5.9,
"alternative": null
}
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Gerard Mart\u00edn",
"firstName": "Gerard",
"slug": "gerard-martin",
"shortName": "G. Mart\u00edn",
"position": "D",
"jerseyNumber": "35",
"height": 186,
"userCount": 7157,
"id": 1094827,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014681600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
}
},
"teamId": 2817,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 1,
"touches": 5
},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Diego Kochen",
"firstName": "Diego Kochen",
"lastName": "",
"slug": "kochen-diego",
"shortName": "D. Kochen",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 2394,
"id": 1402907,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1142726400,
"proposedMarketValueRaw": {
"value": 270000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "I\u00f1aki Pe\u00f1a",
"firstName": "",
"lastName": "",
"slug": "inaki-pena",
"shortName": "I. Pe\u00f1a",
"position": "G",
"jerseyNumber": "13",
"height": 185,
"userCount": 20033,
"id": 794949,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 920332800,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0627, \u0627\u064a\u0646\u0627\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0646\u0627"
}
}
},
"teamId": 2817,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Sergi Dom\u00ednguez",
"firstName": "Sergi Dom\u00ednguez",
"slug": "sergi-dominguez",
"shortName": "S. Dom\u00ednguez",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 5724,
"id": 1153335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1112313600,
"proposedMarketValueRaw": {
"value": 955000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Pablo Torre",
"slug": "pablo-torre",
"shortName": "P. Torre",
"position": "M",
"jerseyNumber": "14",
"height": 173,
"userCount": 20688,
"id": 1082981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1049328000,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0631\u064a \u0643\u0627\u0631\u0627\u0644 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2817,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
},
{
"player": {
"name": "Guillermo Fern\u00e1ndez",
"firstName": "Guillermo Fern\u00e1ndez",
"slug": "guillermo-fernandez",
"shortName": "G. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "20",
"height": 171,
"userCount": 4356,
"id": 1544614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1213747200,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 24343,
"shirtNumber": 41,
"jerseyNumber": "41",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Barcelona"
}
]
[
{
"player": {
"name": "Vicente Guaita",
"slug": "vicente-guaita",
"shortName": "V. Guaita",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 567,
"id": 32023,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 537235200,
"proposedMarketValueRaw": {
"value": 855000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0627\u064a\u062a\u0627, \u0641\u064a\u0633\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u063a\u0648\u0627\u064a\u062a\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"wasFouled": 2,
"goodHighClaim": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": -0.4678
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Javi Rodr\u00edguez",
"slug": "javi-rodriguez",
"shortName": "J. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "32",
"userCount": 224,
"id": 1526627,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1056585600,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 61,
"accuratePass": 50,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 89,
"touches": 69,
"rating": 6.6,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0271977
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Carl Starfelt",
"slug": "carl-starfelt",
"shortName": "C. Starfelt",
"position": "D",
"jerseyNumber": "2",
"height": 185,
"userCount": 556,
"id": 360718,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801964800,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0644 \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
},
"shortNameTranslation": {
"ar": "\u0643. \u0634\u062a\u0627\u0631\u0641\u064a\u0644\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 59,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 5,
"totalClearance": 4,
"outfielderBlock": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.1,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jailson",
"firstName": "",
"lastName": "",
"slug": "jailson",
"shortName": "Jailson",
"position": "M",
"jerseyNumber": "16",
"height": 187,
"userCount": 515,
"id": 794861,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 810432000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u062c\u0627\u062c\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 51,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 75,
"touches": 61,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.0371,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00716171
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "\u00d3scar Mingueza",
"firstName": "",
"lastName": "",
"slug": "oscar-mingueza",
"shortName": "\u00d3. Mingueza",
"position": "D",
"jerseyNumber": "3",
"height": 184,
"userCount": 3190,
"id": 859773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926553600,
"proposedMarketValueRaw": {
"value": 12500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Mingueza, \u00d3scar"
},
"shortNameTranslation": {
"ar": "\u00d3. Mingueza"
}
}
},
"teamId": 2821,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.7,
"possessionLostCtrl": 16,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.142672
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo Sotelo",
"firstName": "Hugo Sotelo",
"slug": "hugo-sotelo",
"shortName": "H. Sotelo",
"position": "M",
"jerseyNumber": "33",
"height": 180,
"userCount": 303,
"id": 1120669,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1071792000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalTackle": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 69,
"touches": 57,
"rating": 6.7,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.122935
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Fran Beltr\u00e1n",
"slug": "fran-beltran",
"shortName": "F. Beltr\u00e1n",
"position": "M",
"jerseyNumber": "8",
"height": 170,
"userCount": 619,
"id": 835484,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918000000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0644\u062a\u0631\u0627\u0646, \u0641\u0631\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u064a\u0644\u062a\u0631\u0627\u0646"
}
}
},
"teamId": 2821,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 6,
"duelWon": 3,
"dispossessed": 4,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0164167
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Hugo \u00c1lvarez",
"firstName": "Hugo \u00c1lvarez",
"slug": "hugo-alvarez",
"shortName": "H. \u00c1lvarez",
"position": "M",
"jerseyNumber": "30",
"height": 176,
"userCount": 554,
"id": 1154935,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057104000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 43,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 8,
"wonContest": 4,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.8,
"possessionLostCtrl": 11,
"expectedGoals": 0.2487,
"keyPass": 3,
"ratingVersions": {
"original": 7.8,
"alternative": null
},
"expectedAssists": 0.170681
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iago Aspas",
"slug": "iago-aspas",
"shortName": "I. Aspas",
"position": "F",
"jerseyNumber": "10",
"height": 176,
"userCount": 5352,
"id": 19356,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 554774400,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0633\u0628\u0627\u0633, \u064a\u0627\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u064a. \u0623\u0633\u0628\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 41,
"accuratePass": 28,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 54,
"rating": 8.1,
"possessionLostCtrl": 16,
"expectedGoals": 0.1231,
"keyPass": 3,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.259864
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Borja Iglesias",
"firstName": "",
"lastName": "",
"slug": "borja-iglesias",
"shortName": "B. Iglesias",
"position": "F",
"jerseyNumber": "7",
"height": 187,
"userCount": 2360,
"id": 785989,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 727228800,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633, \u0628\u0648\u0631\u062e\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 69,
"touches": 21,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.5988,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0077848
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Pablo Dur\u00e1n",
"firstName": "Pablo Dur\u00e1n",
"lastName": "",
"slug": "pablo-duran",
"shortName": "P. Dur\u00e1n",
"position": "F",
"jerseyNumber": "18",
"height": 176,
"userCount": 113,
"id": 1398524,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 990748800,
"proposedMarketValueRaw": {
"value": 310000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 1,
"goalAssist": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 76,
"touches": 25,
"rating": 6.9,
"possessionLostCtrl": 8,
"expectedGoals": 0.0548,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0274987
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Dami\u00e1n Rodr\u00edguez",
"slug": "damian-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 179,
"id": 1216080,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1047859200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 18,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 21,
"touches": 22,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0794415
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Anastasios Douvikas",
"slug": "douvikas-anastasios",
"shortName": "A. Douvikas",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 2014,
"id": 894863,
"country": {
"alpha2": "GR",
"alpha3": "GRC",
"name": "Greece",
"slug": "greece"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933552000,
"proposedMarketValueRaw": {
"value": 5700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u0648\u0633 \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0648\u0641\u064a\u0643\u0627\u0633"
}
}
},
"teamId": 2821,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 4,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 12,
"rating": 7.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.8053,
"ratingVersions": {
"original": 7.4,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Marcos Alonso",
"firstName": "",
"lastName": "",
"slug": "marcos-alonso",
"shortName": "M. Alonso",
"position": "D",
"jerseyNumber": "20",
"height": 188,
"userCount": 12365,
"id": 69408,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 662342400,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0648\u0646\u0633\u0648, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0644\u0648\u0646\u0633\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 2,
"challengeLost": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 15,
"touches": 7,
"rating": 6.4,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Williot Swedberg",
"firstName": "",
"lastName": "",
"slug": "williot-swedberg",
"shortName": "W. Swedberg",
"position": "M",
"jerseyNumber": "19",
"height": 185,
"userCount": 1259,
"id": 1126779,
"country": {
"alpha2": "SE",
"alpha3": "SWE",
"name": "Sweden",
"slug": "sweden"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075593600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u064a\u062f\u0628\u0631\u063a \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0648\u064a\u0644\u064a\u0648\u062a"
}
}
},
"teamId": 2821,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 2,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"wasFouled": 2,
"minutesPlayed": 14,
"touches": 8,
"rating": 6.9,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0114118
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Joseph Aidoo",
"firstName": "",
"lastName": "",
"slug": "joseph-aidoo",
"shortName": "J. Aidoo",
"position": "D",
"jerseyNumber": "15",
"height": 184,
"userCount": 930,
"id": 796320,
"country": {
"alpha2": "GH",
"alpha3": "GHA",
"name": "Ghana",
"slug": "ghana"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812332800,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u064a\u062f\u0648, \u062c\u0648\u0633\u064a\u0628"
},
"shortNameTranslation": {
"ar": "\u062c. \u0627\u064a\u062f\u0648"
}
}
},
"teamId": 2821,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 8,
"touches": 9,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Iv\u00e1n Villar",
"slug": "ivan-villar",
"shortName": "I. Villar",
"position": "G",
"jerseyNumber": "1",
"height": 183,
"userCount": 241,
"id": 848980,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868406400,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u0627\u0631"
}
}
},
"teamId": 2821,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "C\u00e9sar Fern\u00e1ndez",
"firstName": "Cesar Fernandez",
"slug": "cesar-fernandez",
"shortName": "C. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "25",
"height": 181,
"userCount": 14,
"id": 1191206,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1075248000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 24336,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Sergio Carreira",
"firstName": "",
"lastName": "",
"slug": "sergio-carreira",
"shortName": "S. Carreira",
"position": "D",
"jerseyNumber": "5",
"height": 170,
"userCount": 95,
"id": 1002764,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971395200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u0643\u0627\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Ilaix Moriba",
"slug": "ilaix-moriba",
"shortName": "I. Moriba",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 6688,
"id": 962890,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1042934400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Ilaix, Moriba"
},
"shortNameTranslation": {
"ar": "M. Ilaix"
}
}
},
"teamId": 2821,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Franco Cervi",
"firstName": "",
"lastName": "",
"slug": "franco-cervi",
"shortName": "F. Cervi",
"position": "M",
"jerseyNumber": "11",
"height": 165,
"userCount": 926,
"id": 557008,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 769910400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0627\u0646\u0643\u0648 \u0627\u064a\u0645\u0627\u0646\u0648\u064a\u0644 \u0633\u064a\u0631\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0627. \u0633\u064a\u0631\u0641\u064a"
}
}
},
"teamId": 2821,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Jonathan Bamba",
"slug": "jonathan-bamba",
"shortName": "J. Bamba",
"position": "F",
"jerseyNumber": "17",
"height": 175,
"userCount": 3211,
"id": 595576,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827798400,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0627\u062b\u0627\u0646 \u0628\u0627\u0645\u0628\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u0645\u0628\u0627"
}
}
},
"teamId": 2821,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Tadeo Allende",
"slug": "tadeo-allende",
"shortName": "T. Allende",
"position": "F",
"jerseyNumber": "23",
"height": 185,
"userCount": 414,
"id": 1108451,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 919468800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
}
},
"teamId": 2821,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Celta Vigo"
},
{
"player": {
"name": "Karl Hein",
"firstName": "",
"lastName": "",
"slug": "karl-hein",
"shortName": "K. Hein",
"position": "G",
"jerseyNumber": "13",
"height": 193,
"userCount": 2800,
"id": 991591,
"country": {
"alpha2": "EE",
"alpha3": "EST",
"name": "Estonia",
"slug": "estonia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018656000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Hein, Karl Jacob"
},
"shortNameTranslation": {
"ar": "K. J. Hein"
}
}
},
"teamId": 2831,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 37,
"totalLongBalls": 20,
"accurateLongBalls": 7,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 6,
"totalKeeperSweeper": 3,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.5,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00839748,
"goalsPrevented": -0.1876
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Luis P\u00e9rez",
"slug": "luis-perez",
"shortName": "L. P\u00e9rez",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 223,
"id": 843180,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 791856000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0644\u0648\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0644\u0648\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 38,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 90,
"touches": 58,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0131116
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Eray C\u00f6mert",
"slug": "eray-comert",
"shortName": "E. C\u00f6mert",
"position": "D",
"jerseyNumber": "15",
"height": 183,
"userCount": 500,
"id": 814023,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 886550400,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0631\u0627\u064a \u0643\u0648\u0645\u0631\u062a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u0645\u0631\u062a"
}
}
},
"teamId": 2831,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 59,
"accuratePass": 55,
"totalLongBalls": 3,
"goalAssist": 0,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"minutesPlayed": 64,
"touches": 62,
"rating": 6.3,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Cenk \u00d6zka\u00e7ar",
"firstName": "",
"lastName": "",
"slug": "cenk-ozkacar",
"shortName": "C. \u00d6zka\u00e7ar",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 890,
"id": 953097,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 970790400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0646\u0643 \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0632\u0643\u0627\u062c\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 57,
"accuratePass": 56,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 3,
"totalClearance": 4,
"outfielderBlock": 1,
"interceptionWon": 3,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.8,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Lucas Rosa",
"firstName": "",
"lastName": "",
"slug": "lucas-rosa",
"shortName": "L. Rosa",
"position": "D",
"jerseyNumber": "22",
"height": 177,
"userCount": 411,
"id": 970860,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 954720000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Rosa, Lucas Oliveira"
},
"shortNameTranslation": {
"ar": "L. O. Rosa"
}
}
},
"teamId": 2831,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 33,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 5,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 3,
"fouls": 4,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.034,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.125217
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Amath Ndiaye",
"slug": "amath-ndiaye",
"shortName": "A. Ndiaye",
"position": "F",
"jerseyNumber": "19",
"height": 179,
"userCount": 474,
"id": 845168,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837475200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0645\u0627\u062b \u062f\u064a\u062f\u0647\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u064a\u062f\u0647\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 7,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 45,
"touches": 18,
"rating": 5.9,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 5.9,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kike P\u00e9rez",
"slug": "kike-perez",
"shortName": "K. P\u00e9rez",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 257,
"id": 857178,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855878400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0628. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2831,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 4,
"minutesPlayed": 45,
"touches": 34,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.165088
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mario Martin",
"slug": "martin-mario",
"shortName": "M. Mart\u00edn",
"position": "M",
"jerseyNumber": "12",
"height": 177,
"userCount": 3084,
"id": 1154549,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1078444800,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 32,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 7,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 81,
"touches": 49,
"rating": 6.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0249,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.30497
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Selim Amallah",
"firstName": "",
"lastName": "",
"slug": "amallah-selim",
"shortName": "S. Amallah",
"position": "M",
"jerseyNumber": "21",
"height": 187,
"userCount": 8869,
"id": 801211,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848016000,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u064a\u0645 \u0623\u0645\u0644\u0627\u062d"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0645\u0644\u0627\u062d"
}
}
},
"teamId": 2831,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 18,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 3,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 85,
"touches": 41,
"rating": 7.1,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0226971
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Chuky",
"firstName": "",
"lastName": "",
"slug": "chuky",
"shortName": "Chuky",
"position": "M",
"jerseyNumber": "28",
"userCount": 66,
"id": 1137584,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1083196800,
"proposedMarketValueRaw": {
"value": 545000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"dispossessed": 1,
"wasFouled": 2,
"minutesPlayed": 45,
"touches": 11,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0500288
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Juanmi Latasa",
"slug": "juanmi-latasa",
"shortName": "J. Latasa",
"position": "F",
"jerseyNumber": "14",
"height": 191,
"userCount": 2941,
"id": 966679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985305600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a \u0644\u0627\u062a\u0627\u0633\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0627\u062a\u0627\u0633\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 5,
"aerialWon": 2,
"duelLost": 9,
"duelWon": 3,
"dispossessed": 1,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"wasFouled": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.3,
"possessionLostCtrl": 8,
"expectedGoals": 0.2219,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "V\u00edctor Meseguer",
"slug": "victor-meseguer",
"shortName": "V. Meseguer",
"position": "M",
"jerseyNumber": "4",
"height": 184,
"userCount": 129,
"id": 1010335,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"totalContest": 1,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 4,
"expectedGoals": 0.1228,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Iv\u00e1n S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "ivan-sanchez",
"shortName": "I. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 168,
"userCount": 220,
"id": 142018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0641\u0627\u0646 \u0633\u0627\u0646\u0634\u064a\u0632 \u0627\u063a\u0648\u0627\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0625. \u0633. \u0627\u063a\u0648\u0627\u064a\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 18,
"accuratePass": 15,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"duelLost": 2,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00867374
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Ra\u00fal Moro",
"firstName": "",
"lastName": "",
"slug": "raul-moro",
"shortName": "R. Moro",
"position": "F",
"jerseyNumber": "11",
"height": 169,
"userCount": 822,
"id": 980383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1039046400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0648 \u060c \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0631\u0627\u0624\u0648\u0644"
}
}
},
"teamId": 2831,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 3,
"wonContest": 2,
"onTargetScoringAttempt": 1,
"goals": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 30,
"rating": 7.5,
"possessionLostCtrl": 14,
"expectedGoals": 0.1095,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.161244
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Stanko Juri\u0107",
"firstName": "",
"lastName": "",
"slug": "juric-stanko",
"shortName": "S. Juri\u0107",
"position": "M",
"jerseyNumber": "20",
"height": 189,
"userCount": 507,
"id": 921417,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840153600,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2831,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 12,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"totalClearance": 2,
"fouls": 1,
"minutesPlayed": 26,
"touches": 14,
"rating": 6.3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Kenedy",
"firstName": "",
"lastName": "",
"slug": "kenedy",
"shortName": "Kenedy",
"position": "F",
"jerseyNumber": "24",
"height": 182,
"userCount": 1310,
"id": 801391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 823737600,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0646\u064a\u062f\u064a"
}
}
},
"teamId": 2831,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 2,
"dispossessed": 1,
"totalContest": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.2,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Andr\u00e9 Ferreira",
"firstName": "",
"lastName": "",
"slug": "andre-ferreira",
"shortName": "A. Ferreira",
"position": "G",
"jerseyNumber": "1",
"height": 193,
"userCount": 241,
"id": 788197,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833328000,
"proposedMarketValueRaw": {
"value": 740000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0646\u062f\u0631\u064a\u0647 \u0641\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0627. \u0641\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "David Torres",
"firstName": "",
"lastName": "",
"slug": "david-torres",
"shortName": "D. Torres",
"position": "D",
"jerseyNumber": "3",
"height": 182,
"userCount": 154,
"id": 1214359,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1046822400,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u062a\u064a\u0632 \u060c \u062f\u064a\u0641\u064a\u062f \u062a\u0648\u0631\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u062f. \u062a\u0648\u0631\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "C\u00e9sar de la Hoz",
"firstName": "",
"lastName": "",
"slug": "cesar-de-la-hoz",
"shortName": "C. de la Hoz",
"position": "M",
"jerseyNumber": "16",
"height": 179,
"userCount": 49,
"id": 233328,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701913600,
"proposedMarketValueRaw": {
"value": 485000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0633\u064a\u0632\u0627\u0631"
}
}
},
"teamId": 2831,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Darwin Mach\u00eds",
"firstName": "",
"lastName": "",
"slug": "darwin-machis",
"shortName": "D. Mach\u00eds",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 2073,
"id": 252863,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 729043200,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0643\u064a\u0633, \u062f\u0627\u0631\u0648\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u062f. \u0645\u0627\u0643\u064a\u0633"
}
}
},
"teamId": 2831,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Marcos Andr\u00e9",
"firstName": "",
"lastName": "",
"slug": "marcos-andre",
"shortName": "M. Andr\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 494,
"id": 880157,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 845769600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0633\u0648\u0632\u0627, \u0645\u0627\u0631\u0643\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0633\u0648\u0632\u0627"
}
}
},
"teamId": 2831,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
},
{
"player": {
"name": "Mamadou Sylla",
"slug": "mamadou-sylla",
"shortName": "M. Sylla",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 475,
"id": 793761,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764121600,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0645\u0627\u062f\u0648"
}
}
},
"teamId": 2831,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Valladolid"
}
]
[
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 6,
"accurateLongBalls": 3,
"goalAssist": 0,
"errorLeadToAShot": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 24,
"rating": 7.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.2016
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 39,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 4,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 3,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 60,
"rating": 6.1,
"possessionLostCtrl": 5,
"expectedGoals": 0.0081,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.149631
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 47,
"accuratePass": 39,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"outfielderBlock": 4,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.1,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.289828
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Nayef Aguerd",
"firstName": "",
"lastName": "",
"slug": "nayef-aguerd",
"shortName": "N. Aguerd",
"position": "D",
"jerseyNumber": "21",
"height": 188,
"userCount": 21014,
"id": 877102,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 828144000,
"proposedMarketValueRaw": {
"value": 37000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u064a\u0641 \u0627\u062c\u0648\u064a\u0631\u062f"
},
"shortNameTranslation": {
"ar": "\u0646. \u0627\u062c\u0648\u064a\u0631\u062f"
}
}
},
"teamId": 2824,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"totalTackle": 2,
"minutesPlayed": 75,
"touches": 43,
"rating": 7.1,
"possessionLostCtrl": 1,
"expectedGoals": 0.3417,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 78,
"touches": 45,
"rating": 6.5,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00521703
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 35,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 4,
"dispossessed": 2,
"totalContest": 5,
"wonContest": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 18,
"expectedGoals": 0.0887,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.334489
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Luka Su\u010di\u0107",
"slug": "luka-sucic",
"shortName": "L. Su\u010di\u0107",
"position": "M",
"jerseyNumber": "24",
"height": 185,
"userCount": 6252,
"id": 949156,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031443200,
"proposedMarketValueRaw": {
"value": 16300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
},
"shortNameTranslation": {
"ar": "\u0644. \u0633\u0648\u062a\u0634\u064a\u062a\u0634"
}
}
},
"teamId": 2824,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 33,
"totalLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 2,
"hitWoodwork": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 75,
"touches": 50,
"rating": 7,
"possessionLostCtrl": 8,
"expectedGoals": 0.3541,
"keyPass": 1,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0529027
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 66,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 2,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 81,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0735779
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 46,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 7,
"accurateCross": 3,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 2,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.9,
"possessionLostCtrl": 15,
"expectedGoals": 0.0388,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.193111
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 13,
"accuratePass": 8,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalClearance": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 63,
"touches": 22,
"rating": 6.7,
"possessionLostCtrl": 8,
"expectedGoals": 0.1847,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00556476
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 8,
"dispossessed": 1,
"totalContest": 2,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 22,
"rating": 6.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.051,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.052208
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"interceptionWon": 1,
"totalOffside": 1,
"minutesPlayed": 27,
"touches": 17,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0146405
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"minutesPlayed": 27,
"touches": 6,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"fouls": 1,
"minutesPlayed": 15,
"touches": 14,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 15,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00665576
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 11,
"accuratePass": 10,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 12,
"touches": 17,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00524735
},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aritz Elustondo",
"slug": "aritz-elustondo",
"shortName": "A. Elustondo",
"position": "D",
"jerseyNumber": "6",
"height": 178,
"userCount": 327,
"id": 785468,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 764812800,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648, \u0627\u0631\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0627. \u0625\u0644\u0648\u0633\u062a\u0648\u0646\u062f\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "\u00c1lvaro Odriozola",
"firstName": "",
"lastName": "",
"slug": "alvaro-odriozola",
"shortName": "\u00c1. Odriozola",
"position": "D",
"jerseyNumber": "2",
"height": 175,
"userCount": 2534,
"id": 353250,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818899200,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u062f\u0631\u064a\u0648\u0632\u0648\u0644\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mikel Oyarzabal",
"slug": "mikel-oyarzabal",
"shortName": "M. Oyarzabal",
"position": "F",
"jerseyNumber": "10",
"height": 181,
"userCount": 6317,
"id": 823622,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861580800,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644, \u0645\u064a\u0643\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0648\u064a\u0627\u0631\u0632\u0627\u0628\u0627\u0644"
}
}
},
"teamId": 2824,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Sociedad"
},
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 23,
"totalLongBalls": 11,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"punches": 1,
"minutesPlayed": 90,
"touches": 40,
"rating": 7.2,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"goalsPrevented": 0.8972
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Carvajal",
"slug": "daniel-carvajal",
"shortName": "D. Carvajal",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 89435,
"id": 138572,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 695088000,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
}
}
},
"teamId": 2829,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 52,
"accuratePass": 47,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 6,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0889,
"keyPass": 2,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0279347
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 53,
"totalLongBalls": 11,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 81,
"rating": 7.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.1048,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.00814617
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 55,
"accuratePass": 47,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"onTargetScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 66,
"rating": 7.3,
"possessionLostCtrl": 9,
"expectedGoals": 0.0544,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.00579675
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 41,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 1,
"totalTackle": 5,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.028384
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 59,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 4,
"challengeLost": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.3,
"possessionLostCtrl": 6,
"expectedGoals": 0.0208,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0410562
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 61,
"accuratePass": 56,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 83,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.1176,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.324969
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 13,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 24,
"touches": 18,
"rating": 6.8,
"possessionLostCtrl": 3,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0249874
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"blockedScoringAttempt": 2,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 77,
"touches": 45,
"rating": 6.9,
"possessionLostCtrl": 3,
"expectedGoals": 0.0859,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0575455
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 4,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 4,
"goals": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.9,
"possessionLostCtrl": 12,
"expectedGoals": 1.0044,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.019686
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 19,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 89,
"touches": 42,
"rating": 7.2,
"possessionLostCtrl": 15,
"expectedGoals": 0.9029,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0953642
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 27,
"rating": 6.9,
"possessionLostCtrl": 6,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0455188
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 13,
"touches": 12,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"minutesPlayed": 1,
"touches": 3,
"expectedAssists": 0.00792102
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Sergio Mestre",
"firstName": "Sergio Mestre",
"slug": "sergio-mestre",
"shortName": "S. Mestre",
"position": "G",
"jerseyNumber": "34",
"height": 193,
"userCount": 1932,
"id": 1403015,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1108252800,
"proposedMarketValueRaw": {
"value": 48000,
"currency": "EUR"
}
},
"teamId": 490780,
"shirtNumber": 34,
"jerseyNumber": "34",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jes\u00fas Vallejo",
"slug": "jesus-vallejo",
"shortName": "J. Vallejo",
"position": "D",
"jerseyNumber": "18",
"height": 184,
"userCount": 11196,
"id": 355048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852422400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u064a\u064a\u062e\u0648, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0641\u0627\u064a\u064a\u062e\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Chema Andr\u00e9s",
"firstName": "Chema Andr\u00e9s",
"slug": "chema-andres",
"shortName": "C. Andr\u00e9s",
"position": "M",
"jerseyNumber": "36",
"height": 190,
"userCount": 2044,
"id": 1464641,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
}
]
[
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 18,
"totalLongBalls": 35,
"accurateLongBalls": 6,
"goalAssist": 0,
"bigChanceCreated": 1,
"totalClearance": 2,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 4,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.5,
"possessionLostCtrl": 29,
"keyPass": 2,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0154654,
"goalsPrevented": 0.4158
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 50,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.6,
"possessionLostCtrl": 10,
"expectedGoals": 0.014,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.00996061
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 30,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 4,
"totalClearance": 6,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 47,
"rating": 7,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 39,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 6,
"duelLost": 5,
"duelWon": 11,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 4,
"outfielderBlock": 2,
"totalTackle": 3,
"errorLeadToAShot": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 80,
"touches": 64,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 2,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 67,
"touches": 47,
"rating": 7.2,
"possessionLostCtrl": 9,
"expectedGoals": 0.5079,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0282696
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 47,
"totalLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.9,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0110532
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 44,
"totalLongBalls": 5,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalTackle": 1,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 89,
"touches": 52,
"rating": 6.9,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0230033
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 25,
"totalLongBalls": 4,
"goalAssist": 1,
"totalCross": 3,
"accurateCross": 3,
"aerialLost": 2,
"duelLost": 5,
"duelWon": 6,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.1311,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0697477
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 19,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 11,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 4,
"minutesPlayed": 76,
"touches": 36,
"rating": 6.5,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0740764
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 13,
"duelWon": 5,
"dispossessed": 4,
"totalContest": 4,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 2,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 4,
"minutesPlayed": 89,
"touches": 45,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.3134,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.026335
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 26,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 9,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 5,
"totalContest": 7,
"wonContest": 5,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 67,
"touches": 55,
"rating": 6.7,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0220204
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 19,
"touches": 5,
"rating": 5.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 5.3,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 3,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"minutesPlayed": 23,
"touches": 13,
"rating": 6.6,
"possessionLostCtrl": 7,
"expectedGoals": 0.4118,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0205439
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 4,
"duelLost": 4,
"duelWon": 2,
"totalContest": 2,
"wonContest": 2,
"minutesPlayed": 14,
"touches": 15,
"rating": 6.7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0204711
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"minutesPlayed": 10,
"touches": 7,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wasFouled": 1,
"minutesPlayed": 10,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {
"goalAssist": 0,
"blockedScoringAttempt": 1,
"minutesPlayed": 10,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 1,
"expectedGoals": 0.0297,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Flores",
"firstName": "",
"lastName": "",
"slug": "alberto-flores",
"shortName": "A. Flores",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 97,
"id": 1108577,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1068422400,
"proposedMarketValueRaw": {
"value": 320000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0644\u0648\u0631\u064a\u0633 \u0644\u0648\u0628\u064a\u0632 \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0644. \u060c \u0623\u0644\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 7762,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Alberto Collado",
"firstName": "Alberto Collado",
"slug": "collado-alberto",
"shortName": "A. Collado",
"position": "M",
"jerseyNumber": "10",
"userCount": 64,
"id": 1402673,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1113609600,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Pedro Ortiz",
"firstName": "",
"lastName": "",
"slug": "ortiz-pedro",
"shortName": "P. Ortiz",
"position": "M",
"jerseyNumber": "8",
"height": 184,
"userCount": 84,
"id": 964981,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966643200,
"proposedMarketValueRaw": {
"value": 380000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Sevilla"
},
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 11,
"totalLongBalls": 14,
"accurateLongBalls": 6,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 2,
"saves": 3,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 26,
"rating": 7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7,
"alternative": null
},
"goalsPrevented": 0.131
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 28,
"accuratePass": 18,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 3,
"dispossessed": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 7,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 53,
"rating": 6.8,
"possessionLostCtrl": 18,
"expectedGoals": 0.0322,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0603509
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"shotOffTarget": 1,
"totalClearance": 4,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.6,
"possessionLostCtrl": 12,
"expectedGoals": 0.0563,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.006381
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 20,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 7,
"challengeLost": 1,
"totalClearance": 4,
"interceptionWon": 3,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 89,
"touches": 41,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 21,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 9,
"challengeLost": 1,
"dispossessed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 4,
"errorLeadToAShot": 1,
"wasFouled": 3,
"minutesPlayed": 84,
"touches": 63,
"rating": 7.2,
"possessionLostCtrl": 20,
"expectedGoals": 0.0289,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0186487
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 9,
"challengeLost": 4,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"bigChanceCreated": 1,
"blockedScoringAttempt": 3,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 71,
"touches": 34,
"rating": 7.2,
"possessionLostCtrl": 8,
"expectedGoals": 0.0977,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.130236
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 71,
"touches": 25,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 34,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"onTargetScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 7,
"possessionLostCtrl": 18,
"expectedGoals": 0.0292,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0580201
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 71,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00588976
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 12,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 1,
"duelLost": 14,
"duelWon": 4,
"dispossessed": 7,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"hitWoodwork": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 84,
"touches": 32,
"rating": 6.1,
"possessionLostCtrl": 14,
"expectedGoals": 0.4778,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0185606
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 5,
"aerialWon": 4,
"duelLost": 7,
"duelWon": 7,
"dispossessed": 1,
"bigChanceCreated": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 21,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.1322,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.113713
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Gorka Rivera",
"firstName": "",
"lastName": "",
"slug": "gorka-rivera",
"shortName": "G. Rivera",
"position": "D",
"jerseyNumber": "30",
"userCount": 11,
"id": 1390614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091318400,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0641\u064a\u0631\u0627 \u060c \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u062c\u0648\u0631\u0643\u0627"
}
}
},
"teamId": 43753,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 2,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 3,
"totalContest": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 19,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 1,
"duelWon": 4,
"shotOffTarget": 1,
"minutesPlayed": 19,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.0295,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"duelWon": 1,
"totalTackle": 1,
"totalOffside": 1,
"minutesPlayed": 19,
"touches": 2,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"totalTackle": 1,
"minutesPlayed": 21,
"touches": 13,
"rating": 6.7,
"possessionLostCtrl": 5,
"expectedGoals": 0.1276,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.042469
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 1,
"fouls": 1,
"minutesPlayed": 21,
"touches": 4,
"rating": 6.5,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"outfielderBlock": 1,
"minutesPlayed": 9,
"touches": 4,
"rating": 6.6,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Guillem Trilla",
"firstName": "Guillem",
"lastName": "Trilla",
"slug": "guillem-trilla",
"shortName": "G. Trilla",
"position": "D",
"jerseyNumber": "33",
"userCount": 16,
"id": 1936438,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1044316800,
"proposedMarketValueRaw": {
"value": 23000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Getafe"
}
]
[
{
"player": {
"name": "Joan Garc\u00eda",
"slug": "joan-garcia",
"shortName": "J. Garc\u00eda",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 857,
"id": 930267,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 988934400,
"proposedMarketValueRaw": {
"value": 10300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0627\u0646 \u062c\u0627\u0631\u0633\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0627\u0631\u0633\u064a\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 15,
"totalLongBalls": 17,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"errorLeadToAGoal": 1,
"goodHighClaim": 3,
"savedShotsFromInsideTheBox": 3,
"saves": 4,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 41,
"rating": 7.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"goalsPrevented": 1.0733
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Omar El Hilali",
"slug": "omar-el-hilali",
"shortName": "O. E. Hilali",
"position": "D",
"jerseyNumber": "23",
"height": 183,
"userCount": 1499,
"id": 1064026,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063324800,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u0647\u0644\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u0647\u0644\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 22,
"totalLongBalls": 7,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 11,
"challengeLost": 1,
"totalClearance": 8,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 61,
"rating": 6.7,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Marash Kumbulla",
"slug": "marash-kumbulla",
"shortName": "M. Kumbulla",
"position": "D",
"jerseyNumber": "4",
"height": 191,
"userCount": 1565,
"id": 893642,
"country": {
"alpha2": "AL",
"alpha3": "ALB",
"name": "Albania",
"slug": "albania"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949968000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0627\u0634 \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0643\u0648\u0645\u0628\u0648\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 46,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 6,
"totalClearance": 12,
"outfielderBlock": 3,
"interceptionWon": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.1,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Leandro Cabrera",
"slug": "leandro-cabrera",
"shortName": "L. Cabrera",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 372,
"id": 81992,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 677116800,
"proposedMarketValueRaw": {
"value": 1200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0628\u0631\u064a\u0631\u0627, \u0644\u064a\u0627\u0646\u062f\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0627\u0628\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 32,
"totalLongBalls": 8,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 10,
"outfielderBlock": 1,
"interceptionWon": 1,
"errorLeadToAShot": 1,
"minutesPlayed": 90,
"touches": 59,
"rating": 6.8,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00971004
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Carlos Romero",
"firstName": "Carlos Romero",
"lastName": "",
"slug": "carlos-romero",
"shortName": "C. Romero",
"position": "D",
"jerseyNumber": "22",
"userCount": 247,
"id": 1396048,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1004313600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 8,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 3,
"challengeLost": 2,
"dispossessed": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 85,
"touches": 33,
"rating": 6.5,
"possessionLostCtrl": 13,
"expectedGoals": 0.0372,
"keyPass": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0102379
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Tejero",
"slug": "alvaro-tejero",
"shortName": "\u00c1. Tejero",
"position": "D",
"jerseyNumber": "12",
"height": 173,
"userCount": 287,
"id": 826679,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 837820800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 2,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 2,
"totalOffside": 1,
"minutesPlayed": 58,
"touches": 39,
"rating": 8.2,
"possessionLostCtrl": 5,
"expectedGoals": 0.059,
"keyPass": 4,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.84906
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alex Kr\u00e1l",
"firstName": "",
"lastName": "",
"slug": "alex-kral",
"shortName": "A. Kr\u00e1l",
"position": "M",
"jerseyNumber": "20",
"height": 185,
"userCount": 697,
"id": 825740,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895536000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0643\u0633 \u0643\u0631\u0627\u0644"
},
"shortNameTranslation": {
"ar": "\u0627. \u0643\u0631\u0627\u0644"
}
}
},
"teamId": 2814,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 8,
"duelWon": 7,
"dispossessed": 3,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"totalTackle": 5,
"fouls": 3,
"minutesPlayed": 90,
"touches": 33,
"rating": 6.6,
"possessionLostCtrl": 14,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "\u00c1lvaro Aguado",
"slug": "alvaro-aguado",
"shortName": "\u00c1. Aguado",
"position": "M",
"jerseyNumber": "18",
"height": 174,
"userCount": 181,
"id": 916136,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 830908800,
"proposedMarketValueRaw": {
"value": 3000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u062c\u0648\u0627\u062f\u0648, \u0623\u0644\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0627\u062c\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 20,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 58,
"touches": 28,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0234,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00867429
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Jofre Carreras",
"firstName": "",
"lastName": "",
"slug": "jofre",
"shortName": "J. Carreras",
"position": "M",
"jerseyNumber": "17",
"height": 175,
"userCount": 277,
"id": 1019236,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 992736000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u064a\u0631\u0627\u0633 \u060c \u062c\u0648\u0641\u0631"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0641\u0631"
}
}
},
"teamId": 2814,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 3,
"wonContest": 2,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 74,
"touches": 20,
"rating": 6.3,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Javi Puado",
"firstName": "",
"lastName": "",
"slug": "javi-puado",
"shortName": "J. Puado",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 1095,
"id": 891511,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 896054400,
"proposedMarketValueRaw": {
"value": 7500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0627\u062f\u0648, \u062e\u0627\u0641\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u0648\u0627\u062f\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 3,
"totalContest": 2,
"onTargetScoringAttempt": 3,
"goals": 3,
"totalClearance": 3,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 35,
"rating": 8.9,
"possessionLostCtrl": 11,
"expectedGoals": 1.3303,
"keyPass": 1,
"ratingVersions": {
"original": 8.9,
"alternative": null
},
"expectedAssists": 0.0146474
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Alejo V\u00e9liz",
"firstName": "Alejo Veliz",
"lastName": "",
"slug": "alejo-veliz",
"shortName": "A. V\u00e9liz",
"position": "F",
"jerseyNumber": "9",
"height": 187,
"userCount": 3863,
"id": 1116987,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1063929600,
"proposedMarketValueRaw": {
"value": 9400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u063a\u0648 \u0641\u064a\u0644\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 4,
"duelWon": 2,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 2,
"minutesPlayed": 57,
"touches": 8,
"rating": 6.2,
"possessionLostCtrl": 3,
"expectedGoals": 0.1042,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Walid Cheddira",
"slug": "walid-cheddira",
"shortName": "W. Cheddira",
"position": "F",
"jerseyNumber": "16",
"height": 187,
"userCount": 4728,
"id": 917485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885427200,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0648\u0644\u064a\u062f \u0634\u062f\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0648. \u0634\u062f\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"penaltyWon": 1,
"minutesPlayed": 33,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 5,
"expectedGoals": 0.0509,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Jos\u00e9 Gragera",
"slug": "jose-gragera",
"shortName": "J. Gragera",
"position": "M",
"jerseyNumber": "15",
"height": 186,
"userCount": 147,
"id": 966940,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958262400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0633\u064a\u0647 \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0631\u0627\u062c\u064a\u0631\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 32,
"touches": 6,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Irvin Cardona",
"firstName": "",
"lastName": "",
"slug": "irvin-cardona",
"shortName": "I. Cardona",
"position": "F",
"jerseyNumber": "24",
"height": 185,
"userCount": 363,
"id": 605552,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 870998400,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0631\u0641\u064a\u0646 \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 32,
"touches": 18,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.138867
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Sergi G\u00f3mez",
"slug": "sergi-gomez",
"shortName": "S. G\u00f3mez",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 207,
"id": 125625,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 701740800,
"proposedMarketValueRaw": {
"value": 960000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0645\u064a\u0632, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u063a\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"totalClearance": 1,
"minutesPlayed": 16,
"touches": 2,
"rating": 6.5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Brian Oliv\u00e1n",
"firstName": "",
"lastName": "",
"slug": "brian-olivan",
"shortName": "B. Oliv\u00e1n",
"position": "D",
"jerseyNumber": "14",
"height": 179,
"userCount": 149,
"id": 351500,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 765158400,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u064a\u0646 \u0623\u0648\u0644\u064a\u0641\u0627\u0646\u0648 \u0647\u064a\u0631\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0623. \u0647\u064a\u0631\u064a\u0631\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 12,
"touches": 5,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Fernando Pacheco",
"slug": "fernando-pacheco",
"shortName": "F. Pacheco",
"position": "G",
"jerseyNumber": "13",
"height": 186,
"userCount": 207,
"id": 144501,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706147200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u062a\u0634\u064a\u0643\u0648, \u0641\u0631\u0646\u0627\u0646\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Angel Fortuno",
"slug": "fortuno-angel",
"shortName": "A. Fortuno",
"position": "G",
"jerseyNumber": "33",
"height": 183,
"userCount": 28,
"id": 1082734,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978307200,
"proposedMarketValueRaw": {
"value": 290000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u062a\u0648\u0646\u0648 \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0627\u0644\u0645\u0644\u0627\u0643"
}
}
},
"teamId": 2814,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Salvi S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "salvi-sanchez",
"shortName": "S. S\u00e1nchez",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 78,
"id": 811493,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 670291200,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0644\u0641\u0627 \u0633\u0627\u0646\u0634\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2814,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pol Lozano",
"firstName": "",
"lastName": "",
"slug": "pol-lozano",
"shortName": "P. Lozano",
"position": "M",
"jerseyNumber": "10",
"height": 176,
"userCount": 168,
"id": 826010,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939168000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0632\u0627\u0646\u0648, \u0628\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0632\u0627\u0646\u0648"
}
}
},
"teamId": 2814,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Antoniu Roca",
"firstName": "",
"lastName": "",
"slug": "antoniu-roca",
"shortName": "A. Roca",
"position": "F",
"jerseyNumber": "31",
"userCount": 51,
"id": 1099344,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031184000,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Pere Milla",
"firstName": "",
"lastName": "",
"slug": "pere-milla",
"shortName": "P. Milla",
"position": "F",
"jerseyNumber": "11",
"height": 179,
"userCount": 207,
"id": 175185,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 717206400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a \u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2814,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Naci \u00dcn\u00fcvar",
"firstName": "",
"lastName": "",
"slug": "naci-unuvar",
"shortName": "N. \u00dcn\u00fcvar",
"position": "F",
"jerseyNumber": "37",
"height": 168,
"userCount": 1303,
"id": 954317,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1055462400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
}
},
"teamId": 2814,
"shirtNumber": 37,
"jerseyNumber": "37",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Espanyol"
},
{
"player": {
"name": "Antonio Sivera",
"slug": "antonio-sivera",
"shortName": "A. Sivera",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 437,
"id": 369004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839721600,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648, \u0633\u064a\u06a2\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 13,
"accurateLongBalls": 7,
"goalAssist": 0,
"duelLost": 1,
"penaltyConceded": 1,
"fouls": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.2,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"goalsPrevented": -0.2094
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Nahuel Tenaglia",
"slug": "nahuel-tenaglia",
"shortName": "N. Tenaglia",
"position": "D",
"jerseyNumber": "14",
"height": 182,
"userCount": 523,
"id": 896073,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824860800,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0647\u0648\u064a\u0644 \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a\u064a\u0646\u0627\u063a\u0644\u064a\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 35,
"accuratePass": 27,
"totalLongBalls": 6,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.0939,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.075973
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abdelkabir Abqar",
"slug": "abqar-abdelkabir",
"shortName": "A. Abqar",
"position": "D",
"jerseyNumber": "5",
"height": 188,
"userCount": 3768,
"id": 1101232,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 921024000,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0643\u0628\u064a\u0631 \u0639\u0628\u0642\u0631"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0639\u0628\u0642\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 16,
"totalLongBalls": 10,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 6,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 64,
"touches": 30,
"rating": 6.3,
"possessionLostCtrl": 7,
"expectedGoals": 0.0492,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Aleksandar Sedlar",
"slug": "aleksandar-sedlar",
"shortName": "A. Sedlar",
"position": "D",
"jerseyNumber": "4",
"height": 180,
"userCount": 166,
"id": 799195,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 692582400,
"proposedMarketValueRaw": {
"value": 375000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0644\u0631, \u0623\u0644\u0643\u0633\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u064a\u062f\u0644\u0631"
}
}
},
"teamId": 2885,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 48,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"totalClearance": 3,
"interceptionWon": 3,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 6.7,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0103167
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Manuel S\u00e1nchez",
"slug": "manuel-sanchez",
"shortName": "M. S\u00e1nchez",
"position": "D",
"jerseyNumber": "3",
"height": 179,
"userCount": 454,
"id": 984789,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966988800,
"proposedMarketValueRaw": {
"value": 6400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 25,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 62,
"rating": 6.3,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.108935
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jon Guridi",
"slug": "jon-guridi",
"shortName": "J. Guridi",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 365,
"id": 788141,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 793929600,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u064a\u062f\u064a, \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062c. \u062c\u0648\u0631\u064a\u062f\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 29,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"minutesPlayed": 64,
"touches": 38,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0201503
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Antonio Blanco",
"firstName": "",
"lastName": "",
"slug": "antonio-blanco",
"shortName": "A. Blanco",
"position": "M",
"jerseyNumber": "8",
"height": 176,
"userCount": 1501,
"id": 855832,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 964310400,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0646\u0637\u0648\u0646\u064a\u0648 \u0628\u0644\u0627\u0646\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0644\u0627\u0646\u0643\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalTackle": 1,
"minutesPlayed": 64,
"touches": 39,
"rating": 6.4,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0467698
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Vicente",
"firstName": "",
"lastName": "",
"slug": "vicente-carlos",
"shortName": "C. Vicente",
"position": "M",
"jerseyNumber": "7",
"height": 179,
"userCount": 620,
"id": 1084399,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924825600,
"proposedMarketValueRaw": {
"value": 8500000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 13,
"accurateCross": 4,
"aerialLost": 1,
"duelLost": 7,
"duelWon": 5,
"dispossessed": 3,
"totalContest": 4,
"wonContest": 2,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 44,
"rating": 7.2,
"possessionLostCtrl": 18,
"expectedGoals": 0.1102,
"keyPass": 3,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.449995
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Stoichkov",
"slug": "stoichkov",
"shortName": "Stoichkov",
"position": "M",
"jerseyNumber": "19",
"height": 178,
"userCount": 417,
"id": 566894,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 752457600,
"proposedMarketValueRaw": {
"value": 3900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 29,
"accuratePass": 19,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 3,
"duelLost": 7,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 2,
"totalClearance": 1,
"totalTackle": 4,
"wasFouled": 5,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 17,
"expectedGoals": 0.18,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0228922
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Tom\u00e1s Conechny",
"slug": "tomas-conechny",
"shortName": "T. Conechny",
"position": "M",
"jerseyNumber": "10",
"height": 170,
"userCount": 560,
"id": 822607,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 12,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 3,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 4,
"challengeLost": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 78,
"touches": 43,
"rating": 7.3,
"possessionLostCtrl": 17,
"expectedGoals": 0.7225,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.115569
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Kike Garc\u00eda",
"slug": "kike-garcia",
"shortName": "K. Garc\u00eda",
"position": "F",
"jerseyNumber": "17",
"height": 186,
"userCount": 644,
"id": 84972,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 627955200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u064a\u0643\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 14,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 2,
"dispossessed": 3,
"onTargetScoringAttempt": 1,
"fouls": 3,
"minutesPlayed": 64,
"touches": 24,
"rating": 6.5,
"possessionLostCtrl": 9,
"expectedGoals": 0.0285,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0511959
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Santiago Mouri\u00f1o",
"firstName": "",
"lastName": "",
"slug": "santiago-mourino",
"shortName": "S. Mouri\u00f1o",
"position": "D",
"jerseyNumber": "12",
"height": 186,
"userCount": 728,
"id": 1468046,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013558400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 25,
"accuratePass": 21,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"minutesPlayed": 26,
"touches": 31,
"rating": 7.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.0832,
"keyPass": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0721029
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Ander Guevara",
"slug": "ander-guevara",
"shortName": "A. Guevara",
"position": "M",
"jerseyNumber": "6",
"height": 180,
"userCount": 326,
"id": 891931,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 868233600,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0641\u0627\u0631\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u062c\u064a\u0641\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 27,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"fouls": 1,
"minutesPlayed": 26,
"touches": 29,
"rating": 7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1268,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0595541
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Joan Jord\u00e1n",
"firstName": "",
"lastName": "",
"slug": "joan-jordan",
"shortName": "J. Jord\u00e1n",
"position": "M",
"jerseyNumber": "24",
"height": 184,
"userCount": 725,
"id": 591750,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 773452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0631\u062f\u0627\u0646, \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u062e. \u062c\u0648\u0631\u062f\u0627\u0646"
}
}
},
"teamId": 2885,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"totalLongBalls": 8,
"accurateLongBalls": 5,
"goalAssist": 1,
"totalCross": 5,
"accurateCross": 1,
"duelWon": 4,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 26,
"touches": 44,
"rating": 7.5,
"possessionLostCtrl": 10,
"expectedGoals": 0.0392,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.134723
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Toni Mart\u00ednez",
"firstName": "",
"lastName": "",
"slug": "toni-martinez",
"shortName": "T. Mart\u00ednez",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1094,
"id": 831253,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 867628800,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0648\u0646\u064a \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062a. \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 2885,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 4,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 2,
"fouls": 2,
"minutesPlayed": 26,
"touches": 15,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.4372,
"keyPass": 2,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.492038
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Asier Villalibre",
"slug": "asier-villalibre",
"shortName": "A. Villalibre",
"position": "F",
"jerseyNumber": "9",
"height": 183,
"userCount": 615,
"id": 355072,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875577600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a, \u0623\u0633\u064a\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0641\u064a\u0644\u0627\u0644\u064a\u0628\u0631\u064a"
}
}
},
"teamId": 2885,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"totalContest": 1,
"shotOffTarget": 1,
"wasFouled": 2,
"minutesPlayed": 12,
"touches": 10,
"rating": 6.8,
"possessionLostCtrl": 2,
"expectedGoals": 0.044,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Jes\u00fas Owono",
"firstName": "",
"lastName": "",
"slug": "jesus-owono",
"shortName": "J. Owono",
"position": "G",
"jerseyNumber": "13",
"height": 181,
"userCount": 361,
"id": 990659,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 983404800,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u064a\u0633\u0648\u0633 \u0623\u0648\u0648\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623\u0648\u0648\u0646\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Moussa Diarra",
"slug": "diarra-moussa",
"shortName": "M. Diarra",
"position": "D",
"jerseyNumber": "22",
"height": 183,
"userCount": 762,
"id": 985262,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 973814400,
"proposedMarketValueRaw": {
"value": 1800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0633\u0649 \u062f\u064a\u0627\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u064a\u0627\u0631\u0627"
}
}
},
"teamId": 2885,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Adri\u00e1n Pica",
"slug": "adrian-hernandez-pica",
"shortName": "A. H. Pica",
"position": "D",
"jerseyNumber": "36",
"height": 190,
"userCount": 66,
"id": 1122488,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019692800,
"proposedMarketValueRaw": {
"value": 520000,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Abderrahman Rebbach",
"firstName": "",
"lastName": "",
"slug": "abderrahman-rebbach",
"shortName": "A. Rebbach",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 832,
"id": 1082968,
"country": {
"alpha2": "DZ",
"alpha3": "DZA",
"name": "Algeria",
"slug": "algeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 902793600,
"proposedMarketValueRaw": {
"value": 775000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f \u0627\u0644\u0631\u062d\u0645\u0646 \u0631\u0628\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627. \u0631\u0628\u0627\u0634"
}
}
},
"teamId": 2885,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Luka Romero",
"firstName": "Luka Romero",
"lastName": "",
"slug": "luka-romero",
"shortName": "L. Romero",
"position": "M",
"jerseyNumber": "20",
"height": 165,
"userCount": 6930,
"id": 1032022,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1100736000,
"proposedMarketValueRaw": {
"value": 5400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u0627 \u0631\u0648\u0645\u064a\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u0631\u0648\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2885,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Benav\u00eddez",
"firstName": "",
"lastName": "",
"slug": "carlos-benavidez",
"shortName": "C. Benav\u00eddez",
"position": "M",
"jerseyNumber": "23",
"height": 185,
"userCount": 350,
"id": 873717,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 891216000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Benavidez Protesoni, Carlos Nahuel"
},
"shortNameTranslation": {
"ar": "C. N. B. Protesoni"
}
}
},
"teamId": 2885,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
},
{
"player": {
"name": "Carlos Mart\u00edn",
"firstName": "Carlos Mart\u00edn",
"lastName": "",
"slug": "carlos-martin",
"shortName": "C. Mart\u00edn",
"position": "F",
"jerseyNumber": "15",
"height": 182,
"userCount": 531,
"id": 1131581,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1019433600,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
}
},
"teamId": 2885,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Deportivo Alav\u00e9s"
}
]
[
{
"player": {
"name": "Dominik Greif",
"slug": "dominik-greif",
"shortName": "D. Greif",
"position": "G",
"jerseyNumber": "1",
"height": 197,
"userCount": 464,
"id": 791046,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 860284800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643 \u063a\u0631\u064a\u0641"
},
"shortNameTranslation": {
"ar": "\u062f. \u063a\u0631\u064a\u0641"
}
}
},
"teamId": 2826,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 26,
"totalLongBalls": 19,
"accurateLongBalls": 8,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 2,
"saves": 2,
"minutesPlayed": 90,
"touches": 47,
"rating": 6.7,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"goalsPrevented": 0.0267
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio S\u00e1nchez",
"slug": "antonio-sanchez",
"shortName": "A. S\u00e1nchez",
"position": "M",
"jerseyNumber": "18",
"height": 179,
"userCount": 226,
"id": 949722,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861667200,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0646\u0634\u064a\u0632, \u0627\u0646\u062a\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0627. \u0633\u0627\u0646\u0634\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 23,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 81,
"touches": 60,
"rating": 6.9,
"possessionLostCtrl": 19,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.154987
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Martin Valjent",
"slug": "martin-valjent",
"shortName": "M. Valjent",
"position": "D",
"jerseyNumber": "24",
"height": 187,
"userCount": 555,
"id": 300522,
"country": {
"alpha2": "SK",
"alpha3": "SVK",
"name": "Slovakia",
"slug": "slovakia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 818640000,
"proposedMarketValueRaw": {
"value": 6300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u062c\u0646\u062a, \u0645\u0627\u0631\u062a\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u0641\u0627\u0644\u062c\u0646\u062a"
}
}
},
"teamId": 2826,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 36,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 4,
"shotOffTarget": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 1,
"minutesPlayed": 90,
"touches": 51,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.07,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Antonio Ra\u00edllo",
"slug": "antonio-raillo",
"shortName": "A. Ra\u00edllo",
"position": "D",
"jerseyNumber": "21",
"height": 186,
"userCount": 861,
"id": 807116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 686880000,
"proposedMarketValueRaw": {
"value": 2200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0627\u064a\u0644\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 58,
"accuratePass": 49,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 6,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 70,
"rating": 7.2,
"possessionLostCtrl": 10,
"expectedGoals": 0.0122,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.00706598
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Toni Lato",
"slug": "toni-lato",
"shortName": "T. Lato",
"position": "D",
"jerseyNumber": "3",
"height": 173,
"userCount": 265,
"id": 828239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 880070400,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062a\u0648, \u062a\u0648\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0644\u0627\u062a\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 24,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 2,
"minutesPlayed": 69,
"touches": 48,
"rating": 6.2,
"possessionLostCtrl": 12,
"keyPass": 1,
"ratingVersions": {
"original": 6.2,
"alternative": null
},
"expectedAssists": 0.0388861
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Manu Morlanes",
"firstName": "",
"lastName": "",
"slug": "manu-morlanes",
"shortName": "M. Morlanes",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 394,
"id": 826004,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 916099200,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633, \u0645\u0627\u0646\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u0645\u0648\u0631\u0644\u0627\u0646\u064a\u0633"
}
}
},
"teamId": 2826,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 30,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 4,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 72,
"touches": 44,
"rating": 6.7,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.02434
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sam\u00fa Costa",
"slug": "samuel-costa",
"shortName": "S. Costa",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 1186,
"id": 988351,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 975283200,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
},
"shortNameTranslation": {
"ar": "\u0633\u0627\u0645\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 56,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 6,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 2,
"totalClearance": 1,
"totalTackle": 3,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 82,
"rating": 7.5,
"possessionLostCtrl": 11,
"expectedGoals": 0.1124,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0383794
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Takuma Asano",
"firstName": "",
"lastName": "",
"slug": "takuma-asano",
"shortName": "T. Asano",
"position": "F",
"jerseyNumber": "11",
"height": 171,
"userCount": 2234,
"id": 309546,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 784425600,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u0648\u0645\u0627 \u0627\u0633\u0627\u0646\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0627\u0633\u0627\u0646\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 63,
"touches": 31,
"rating": 7,
"possessionLostCtrl": 14,
"expectedGoals": 0.022,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Dani Rodr\u00edguez",
"slug": "dani-rodriguez",
"shortName": "D. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "14",
"height": 177,
"userCount": 693,
"id": 349526,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 581558400,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0648\u062f\u0631\u064a\u062c\u064a\u0632"
}
}
},
"teamId": 2826,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 3,
"duelLost": 1,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 62,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 15,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0913973
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Marc Domenech",
"firstName": "Marc Domenech",
"slug": "marc-domenech",
"shortName": "M. Domenech",
"position": "M",
"jerseyNumber": "30",
"userCount": 48,
"id": 1914318,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1136073600,
"proposedMarketValueRaw": {
"value": 535000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"duelLost": 1,
"onTargetScoringAttempt": 1,
"minutesPlayed": 45,
"touches": 8,
"rating": 6.6,
"possessionLostCtrl": 4,
"expectedGoals": 0.0268,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Vedat Muriqi",
"slug": "vedat-muriqi",
"shortName": "V. Muriqi",
"position": "F",
"jerseyNumber": "7",
"height": 194,
"userCount": 3971,
"id": 310874,
"country": {
"alpha2": "XK",
"alpha3": "XKX",
"name": "Kosovo",
"slug": "kosovo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 767145600,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u062f\u0627\u062a \u0645\u0648\u0631\u064a\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0648\u0631\u064a\u0643\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 7,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 2,
"shotOffTarget": 1,
"totalClearance": 2,
"fouls": 1,
"totalOffside": 2,
"minutesPlayed": 90,
"touches": 28,
"rating": 6.8,
"possessionLostCtrl": 8,
"expectedGoals": 0.0166,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00997566
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Valery Fern\u00e1ndez",
"slug": "valery-fernandez",
"shortName": "V. Fern\u00e1ndez",
"position": "D",
"jerseyNumber": "16",
"height": 179,
"userCount": 455,
"id": 962378,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 943315200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0631\u0646\u0627\u0646\u062f\u064a\u0632 \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0641. \u060c \u0641\u0627\u0644\u064a\u0631\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"totalContest": 3,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 17,
"rating": 6.3,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.013821
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Robert Navarro",
"firstName": "",
"lastName": "",
"slug": "robert-navarro",
"shortName": "R. Navarro",
"position": "M",
"jerseyNumber": "27",
"height": 178,
"userCount": 630,
"id": 944165,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1018569600,
"proposedMarketValueRaw": {
"value": 6500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0628\u0631\u062a \u0646\u0627\u0641\u0627\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0646\u0627\u0641\u0627\u0631\u0648"
}
}
},
"teamId": 2826,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 15,
"goalAssist": 0,
"duelWon": 1,
"blockedScoringAttempt": 1,
"wasFouled": 1,
"minutesPlayed": 28,
"touches": 19,
"rating": 6.8,
"possessionLostCtrl": 1,
"expectedGoals": 0.0874,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0946109
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Sergi Darder",
"slug": "sergi-darder",
"shortName": "S. Darder",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 928,
"id": 110783,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 756518400,
"proposedMarketValueRaw": {
"value": 5600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0631\u062f\u0631, \u0633\u064a\u0631\u062c\u064a"
},
"shortNameTranslation": {
"ar": "\u0633. \u062f\u0627\u0631\u062f\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 23,
"accuratePass": 21,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 2,
"wonContest": 1,
"minutesPlayed": 27,
"touches": 29,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0313032
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Johan Mojica",
"slug": "johan-mojica",
"shortName": "J. Mojica",
"position": "D",
"jerseyNumber": "22",
"height": 185,
"userCount": 2892,
"id": 344847,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714355200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0647\u0627\u0646 \u0645\u0648\u062e\u064a\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0645\u0648\u062e\u064a\u0643\u0627"
}
}
},
"teamId": 2826,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"minutesPlayed": 18,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00685269
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Jos\u00e9 Copete",
"firstName": "",
"lastName": "",
"slug": "jose-copete",
"shortName": "J. Copete",
"position": "D",
"jerseyNumber": "6",
"height": 190,
"userCount": 259,
"id": 913695,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 939513600,
"proposedMarketValueRaw": {
"value": 2500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643\u0648\u0628\u064a\u062a\u064a"
}
}
},
"teamId": 2826,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 5,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 2,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 9,
"touches": 10,
"rating": 6.7,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Leo Rom\u00e1n",
"firstName": "",
"lastName": "",
"slug": "leo-roman",
"shortName": "L. Rom\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 189,
"userCount": 249,
"id": 1131909,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 962841600,
"proposedMarketValueRaw": {
"value": 1700000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Iv\u00e1n Cu\u00e9llar",
"slug": "ivan-cuellar",
"shortName": "I. Cu\u00e9llar",
"position": "G",
"jerseyNumber": "25",
"height": 187,
"userCount": 102,
"id": 19013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 454464000,
"proposedMarketValueRaw": {
"value": 110000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u064a\u064a\u0627\u0631, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0643\u0648\u064a\u064a\u0627\u0631"
}
}
},
"teamId": 2826,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Chiquinho",
"slug": "chiquinho",
"shortName": "Chiquinho",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 487,
"id": 1015826,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949708800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Omar Mascarell",
"slug": "omar-mascarell",
"shortName": "O. Mascarell",
"position": "M",
"jerseyNumber": "5",
"height": 181,
"userCount": 375,
"id": 255999,
"country": {
"alpha2": "GQ",
"alpha3": "GNQ",
"name": "Equatorial Guinea",
"slug": "equatorial-guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 728611200,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0645\u0627\u0631 \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0627\u0633\u0643\u0627\u0631\u064a\u0644"
}
}
},
"teamId": 2826,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Daniel Luna",
"firstName": "",
"lastName": "",
"slug": "daniel-luna",
"shortName": "D. Luna",
"position": "M",
"jerseyNumber": "33",
"height": 178,
"userCount": 346,
"id": 1018516,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1052265600,
"proposedMarketValueRaw": {
"value": 285000,
"currency": "EUR"
}
},
"teamId": 2826,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Abd\u00f3n Prats",
"slug": "abdon-prats",
"shortName": "A. Prats",
"position": "F",
"jerseyNumber": "9",
"height": 181,
"userCount": 319,
"id": 146852,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 724550400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0639\u0628\u062f\u0648\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Cyle Larin",
"slug": "cyle-larin",
"shortName": "C. Larin",
"position": "F",
"jerseyNumber": "17",
"height": 187,
"userCount": 1556,
"id": 790179,
"country": {
"alpha2": "CA",
"alpha3": "CAN",
"name": "Canada",
"slug": "canada"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 798076800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644 \u0644\u0627\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0644\u0627\u0631\u064a\u0646"
}
}
},
"teamId": 2826,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Mallorca"
},
{
"player": {
"name": "Diego Conde",
"firstName": "",
"lastName": "",
"slug": "diego-conde",
"shortName": "D. Conde",
"position": "G",
"jerseyNumber": "13",
"height": 188,
"userCount": 469,
"id": 951008,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 909532800,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0646\u062f\u064a \u060c \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062f\u064a\u064a\u063a\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"totalLongBalls": 9,
"accurateLongBalls": 4,
"goalAssist": 0,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 2,
"saves": 4,
"minutesPlayed": 90,
"touches": 28,
"rating": 7.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"goalsPrevented": -0.6624
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Kiko Femen\u00eda",
"firstName": "",
"lastName": "",
"slug": "kiko-femenia",
"shortName": "K. Femen\u00eda",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 411,
"id": 53739,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 665452800,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0645\u064a\u0646\u064a\u0627, \u0643\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0643. \u0641\u0627\u0645\u064a\u0646\u064a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 38,
"accuratePass": 31,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelWon": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 56,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0645981
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ra\u00fal Albiol",
"firstName": "",
"lastName": "",
"slug": "raul-albiol",
"shortName": "R. Albiol",
"position": "D",
"jerseyNumber": "3",
"height": 190,
"userCount": 928,
"id": 3041,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 494640000,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u0628\u064a\u0648\u0644, \u0631\u0627\u0624\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0631. \u0627\u0644\u0628\u064a\u0648\u0644"
}
}
},
"teamId": 2819,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 10,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 1,
"duelWon": 5,
"blockedScoringAttempt": 1,
"totalClearance": 6,
"outfielderBlock": 2,
"ownGoals": 1,
"minutesPlayed": 90,
"touches": 55,
"rating": 7.1,
"possessionLostCtrl": 9,
"expectedGoals": 0.083,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00702503
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Logan Costa",
"slug": "logan-costa",
"shortName": "L. Costa",
"position": "D",
"jerseyNumber": "2",
"height": 188,
"userCount": 670,
"id": 911853,
"country": {
"alpha2": "CV",
"alpha3": "CPV",
"name": "Cape Verde",
"slug": "cape-verde"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 986083200,
"proposedMarketValueRaw": {
"value": 17500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0633\u062a\u0627, \u0644\u0648\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0648\u0633\u062a\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 41,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 1,
"duelWon": 3,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalClearance": 10,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1696,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0055385
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Sergi Cardona",
"slug": "sergi-cardona",
"shortName": "S. Cardona",
"position": "D",
"jerseyNumber": "23",
"height": 186,
"userCount": 818,
"id": 986245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 932256000,
"proposedMarketValueRaw": {
"value": 6700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0643\u0627\u0631\u062f\u0648\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 3,
"totalContest": 2,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 86,
"touches": 63,
"rating": 6.6,
"possessionLostCtrl": 14,
"expectedGoals": 0.037,
"keyPass": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.136775
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ilias Akhomach",
"firstName": "",
"lastName": "",
"slug": "ilias-akhomach",
"shortName": "I. Akhomach",
"position": "M",
"jerseyNumber": "11",
"height": 175,
"userCount": 13721,
"id": 1089108,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1082073600,
"proposedMarketValueRaw": {
"value": 13900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u064a\u0627\u0633 \u0627\u062e\u0648\u0645\u0627\u0634"
},
"shortNameTranslation": {
"ar": "\u0627. \u0627\u062e\u0648\u0645\u0627\u0634"
}
}
},
"teamId": 2819,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"shotOffTarget": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 63,
"touches": 14,
"rating": 6.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0736,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00525943
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Santi Comesa\u00f1a",
"firstName": "",
"lastName": "",
"slug": "santi-comesana",
"shortName": "S. Comesa\u00f1a",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 741,
"id": 843678,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844473600,
"proposedMarketValueRaw": {
"value": 8400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0645\u064a\u0633\u0627\u0646\u0627 \u060c \u0633\u0627\u0646\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u0633\u0627\u0646\u062a\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 33,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 6,
"challengeLost": 2,
"dispossessed": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 3,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 85,
"touches": 57,
"rating": 7.4,
"possessionLostCtrl": 11,
"expectedGoals": 0.0459,
"keyPass": 5,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.467567
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Dani Parejo",
"firstName": "",
"lastName": "",
"slug": "dani-parejo",
"shortName": "D. Parejo",
"position": "M",
"jerseyNumber": "10",
"height": 180,
"userCount": 2134,
"id": 39182,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 608688000,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u064a\u062e\u0648, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0627\u0631\u064a\u062e\u0648"
}
}
},
"teamId": 2819,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 34,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialWon": 4,
"duelWon": 4,
"minutesPlayed": 74,
"touches": 50,
"rating": 6.9,
"possessionLostCtrl": 10,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.190122
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Alejandro Baena",
"firstName": "",
"lastName": "",
"slug": "alejandro-baena",
"shortName": "A. Baena",
"position": "M",
"jerseyNumber": "16",
"height": 174,
"userCount": 4634,
"id": 910031,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 995587200,
"proposedMarketValueRaw": {
"value": 53000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0643\u0633 \u0628\u0627\u064a\u0646\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u064a\u0646\u0627"
}
}
},
"teamId": 2819,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 41,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 6,
"accurateCross": 2,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 8,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 3,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 8.1,
"possessionLostCtrl": 15,
"expectedGoals": 0.2397,
"keyPass": 6,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.603205
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ayoze P\u00e9rez",
"slug": "ayoze-perez",
"shortName": "A. P\u00e9rez",
"position": "M",
"jerseyNumber": "22",
"height": 180,
"userCount": 3113,
"id": 345195,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 743385600,
"proposedMarketValueRaw": {
"value": 10700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0627\u064a\u0648\u0632\u064a"
},
"shortNameTranslation": {
"ar": "\u0627. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 4,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"goals": 1,
"totalClearance": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 38,
"rating": 8,
"possessionLostCtrl": 8,
"expectedGoals": 0.6879,
"keyPass": 3,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.285181
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Thierno Barry",
"slug": "thierno-barry",
"shortName": "T. Barry",
"position": "F",
"jerseyNumber": "15",
"height": 195,
"userCount": 2905,
"id": 1395746,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035158400,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 4,
"aerialWon": 4,
"duelLost": 8,
"duelWon": 6,
"dispossessed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"wasFouled": 2,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 36,
"rating": 6.8,
"possessionLostCtrl": 14,
"expectedGoals": 0.3458,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0104373
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Y\u00e9remy Pino",
"firstName": "",
"lastName": "",
"slug": "yeremy-pino",
"shortName": "Y. Pino",
"position": "M",
"jerseyNumber": "21",
"height": 172,
"userCount": 2711,
"id": 984624,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1035072000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u0648\u060c \u064a\u0631\u064a\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u0628. \u064a\u0631\u064a\u0645\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 6,
"goalAssist": 1,
"totalCross": 1,
"duelLost": 1,
"duelWon": 3,
"totalContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 27,
"touches": 16,
"rating": 7.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.0827,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.5325
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Nicolas P\u00e9p\u00e9",
"firstName": "",
"lastName": "",
"slug": "nicolas-pepe",
"shortName": "N. P\u00e9p\u00e9",
"position": "F",
"jerseyNumber": "19",
"height": 183,
"userCount": 12571,
"id": 593526,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 801705600,
"proposedMarketValueRaw": {
"value": 9900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0628\u064a, \u0646\u064a\u0643\u0648\u0644\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0646. \u0628\u064a\u0628\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 11,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 16,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0720631
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Ram\u00f3n Terrats",
"firstName": "Ram\u00f3n Terrats",
"lastName": "",
"slug": "ramon-terrats",
"shortName": "R. Terrats",
"position": "M",
"jerseyNumber": "20",
"height": 179,
"userCount": 247,
"id": 1088565,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 971827200,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u064a\u0631\u0627\u062a\u0633 \u060c \u0631\u0627\u0645\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u062a. \u060c \u0631\u0627\u0645\u0648\u0646"
}
}
},
"teamId": 2819,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 4,
"goalAssist": 0,
"minutesPlayed": 13,
"touches": 7,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00555976
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Juan Bernat",
"slug": "juan-bernat",
"shortName": "J. Bernat",
"position": "D",
"jerseyNumber": "12",
"height": 170,
"userCount": 1507,
"id": 96368,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730944000,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0628\u064a\u0631\u0646\u0627\u062a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0628\u064a\u0631\u0646\u0627\u062a"
}
}
},
"teamId": 2819,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"minutesPlayed": 12,
"touches": 6,
"rating": 6.7,
"possessionLostCtrl": 1,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0254268
},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Luiz J\u00fanior",
"firstName": "Luiz L\u00facio Reis J\u00fanior",
"lastName": "",
"slug": "luiz-junior",
"shortName": "L. J\u00fanior",
"position": "G",
"jerseyNumber": "1",
"height": 192,
"userCount": 825,
"id": 1066603,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 979430400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
}
},
"teamId": 2819,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Pau Navarro",
"slug": "pau-navarro",
"shortName": "P. Navarro",
"position": "D",
"jerseyNumber": "26",
"height": 185,
"userCount": 75,
"id": 1525863,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1114387200,
"proposedMarketValueRaw": {
"value": 195000,
"currency": "EUR"
}
},
"teamId": 24338,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Eric Bailly",
"firstName": "",
"lastName": "",
"slug": "eric-bailly",
"shortName": "E. Bailly",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 3942,
"id": 606346,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 766108800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u064a\u0644\u064a, \u0625\u0631\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0625. \u0628\u0627\u064a\u0644\u064a"
}
}
},
"teamId": 2819,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
},
{
"player": {
"name": "Denis Su\u00e1rez",
"slug": "denis-suarez",
"shortName": "D. Su\u00e1rez",
"position": "M",
"jerseyNumber": "6",
"height": 176,
"userCount": 1355,
"id": 138383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 757814400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0627\u0631\u064a\u0632, \u062f\u064a\u0646\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0627\u0631\u064a\u0632"
}
}
},
"teamId": 2819,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Villarreal"
}
]
[
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 6,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"goodHighClaim": 1,
"totalKeeperSweeper": 1,
"accurateKeeperSweeper": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.8,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 30,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 62,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 6,
"expectedGoals": 0.0271,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00794892
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 80,
"accuratePass": 71,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 2,
"duelWon": 6,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 87,
"rating": 7,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0071601
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 73,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 4,
"duelWon": 5,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 84,
"rating": 7.5,
"possessionLostCtrl": 2,
"expectedGoals": 0.0363,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.00906451
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 67,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 3,
"duelWon": 4,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 2,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 102,
"rating": 7.6,
"possessionLostCtrl": 15,
"expectedGoals": 0.0441,
"keyPass": 1,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0333682
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 75,
"accuratePass": 70,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 2,
"duelLost": 4,
"challengeLost": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 85,
"rating": 7.2,
"possessionLostCtrl": 6,
"expectedGoals": 0.0362,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0494389
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "William Carvalho",
"slug": "william-carvalho",
"shortName": "W. Carvalho",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 1722,
"id": 137978,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
},
"shortNameTranslation": {
"ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 11,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"minutesPlayed": 26,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 14,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 2,
"aerialLost": 1,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 4,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 61,
"touches": 37,
"rating": 7,
"possessionLostCtrl": 13,
"keyPass": 2,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.0494107
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 53,
"accuratePass": 45,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 8,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 87,
"touches": 74,
"rating": 7.4,
"possessionLostCtrl": 19,
"expectedGoals": 0.0173,
"keyPass": 2,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0802874
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 53,
"accuratePass": 38,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 7,
"duelWon": 6,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"bigChanceMissed": 1,
"onTargetScoringAttempt": 4,
"goals": 1,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 78,
"rating": 7.7,
"possessionLostCtrl": 25,
"expectedGoals": 1.2396,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0415021
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 10,
"accuratePass": 9,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 2,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 62,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 3,
"expectedGoals": 0.0387,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 53,
"accuratePass": 48,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 64,
"touches": 68,
"rating": 7.1,
"possessionLostCtrl": 7,
"expectedGoals": 0.068,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0271306
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Giovani Lo Celso",
"slug": "lo-celso-giovani",
"shortName": "G. Lo Celso",
"position": "M",
"jerseyNumber": "20",
"height": 177,
"userCount": 17180,
"id": 798835,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 829008000,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648 \u0633\u064a\u0644\u0633\u0648, \u062c\u064a\u0648\u0641\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0644. \u0633\u064a\u0644\u0633\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 26,
"accuratePass": 22,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialWon": 1,
"duelWon": 5,
"totalTackle": 2,
"wasFouled": 3,
"minutesPlayed": 29,
"touches": 37,
"rating": 7.1,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.0327387
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 1,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"bigChanceCreated": 1,
"minutesPlayed": 28,
"touches": 18,
"rating": 7.1,
"possessionLostCtrl": 5,
"keyPass": 2,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.66527
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 6,
"dispossessed": 2,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"fouls": 2,
"minutesPlayed": 28,
"touches": 8,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.6981,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 11,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00839436
},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Lucas Alcazar",
"firstName": "",
"lastName": "",
"slug": "lucas-alcazar",
"shortName": "L. Alc\u00e1zar",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 71,
"id": 1049200,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026345600,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Jes\u00fas Rodriguez",
"slug": "jesus-rodriguez",
"shortName": "J. Rodriguez",
"position": "F",
"jerseyNumber": "36",
"height": 185,
"userCount": 180,
"id": 1800245,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1132531200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 36,
"jerseyNumber": "36",
"position": "F",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Betis"
},
{
"player": {
"name": "Juan Soriano",
"slug": "juan-soriano",
"shortName": "J. Soriano",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 199,
"id": 547246,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 872294400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 12,
"totalLongBalls": 29,
"accurateLongBalls": 9,
"goalAssist": 0,
"duelWon": 1,
"wasFouled": 1,
"goodHighClaim": 2,
"savedShotsFromInsideTheBox": 3,
"saves": 3,
"minutesPlayed": 90,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 20,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"goalsPrevented": 0.3714
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Valentin Rosier",
"slug": "valentin-rosier",
"shortName": "V. Rosier",
"position": "D",
"jerseyNumber": "12",
"height": 175,
"userCount": 578,
"id": 842419,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 840412800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0646\u062a\u064a\u0646 \u0631\u0648\u0632\u0631"
},
"shortNameTranslation": {
"ar": "\u0641. \u0631\u0648\u0632\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 23,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 9,
"challengeLost": 1,
"totalContest": 2,
"wonContest": 1,
"interceptionWon": 2,
"lastManTackle": 1,
"totalTackle": 5,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 52,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jorge S\u00e1enz",
"slug": "jorge-saenz",
"shortName": "J. S\u00e1enz",
"position": "D",
"jerseyNumber": "3",
"height": 192,
"userCount": 145,
"id": 592098,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848188800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u064a\u0646\u0632, \u062e\u0648\u0631\u062e\u064a"
},
"shortNameTranslation": {
"ar": "\u062e. \u0633\u0627\u064a\u0646\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 19,
"accuratePass": 17,
"totalLongBalls": 5,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"challengeLost": 1,
"totalClearance": 1,
"interceptionWon": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 23,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Sergio Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "sergio-gonzalez",
"shortName": "S. Gonz\u00e1lez",
"position": "D",
"jerseyNumber": "6",
"height": 186,
"userCount": 324,
"id": 377234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 703728000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 35,
"accuratePass": 32,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 6,
"totalClearance": 2,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 46,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Javier Hern\u00e1ndez",
"slug": "javier-hernandez",
"shortName": "J. Hern\u00e1ndez",
"position": "D",
"jerseyNumber": "20",
"height": 181,
"userCount": 485,
"id": 1031658,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 894067200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a\u064a\u0631 \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0647\u064a\u0631\u0646\u0627\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2845,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 22,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 3,
"duelLost": 8,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 4,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 5,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 90,
"touches": 54,
"rating": 6.1,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 6.1,
"alternative": null
},
"expectedAssists": 0.0665739
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Darko Bra\u0161anac",
"firstName": "",
"lastName": "",
"slug": "darko-brasanac",
"shortName": "D. Bra\u0161anac",
"position": "M",
"jerseyNumber": "14",
"height": 178,
"userCount": 250,
"id": 94539,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 697852800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643, \u062f\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0631\u0627\u0633\u0627\u0646\u0627\u0643"
}
}
},
"teamId": 2845,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 1,
"blockedScoringAttempt": 1,
"totalClearance": 5,
"outfielderBlock": 1,
"fouls": 5,
"minutesPlayed": 90,
"touches": 35,
"rating": 6.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0686,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00666111
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Yvan Neyou",
"firstName": "",
"lastName": "",
"slug": "yvan-neyou",
"shortName": "Y. Neyou",
"position": "M",
"jerseyNumber": "17",
"height": 180,
"userCount": 701,
"id": 869931,
"country": {
"alpha2": "CM",
"alpha3": "CMR",
"name": "Cameroon",
"slug": "cameroon"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852249600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u064a\u0641\u0646 \u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 31,
"accuratePass": 28,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 7,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 3,
"shotOffTarget": 1,
"interceptionWon": 2,
"totalTackle": 1,
"wasFouled": 2,
"minutesPlayed": 66,
"touches": 45,
"rating": 7.1,
"possessionLostCtrl": 5,
"expectedGoals": 0.0129,
"ratingVersions": {
"original": 7.1,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juan Cruz",
"slug": "juan-cruz",
"shortName": "J. Cruz",
"position": "M",
"jerseyNumber": "11",
"height": 179,
"userCount": 631,
"id": 936234,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956620800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646 \u0643\u0631\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0643\u0631\u0648\u0633"
}
}
},
"teamId": 2845,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 2,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 15,
"rating": 6.6,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "\u00d3scar Rodr\u00edguez",
"firstName": "",
"lastName": "",
"slug": "oscar-rodriguez",
"shortName": "\u00d3. Rodr\u00edguez",
"position": "M",
"jerseyNumber": "7",
"height": 174,
"userCount": 782,
"id": 794948,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 898992000,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
},
"shortNameTranslation": {
"ar": "\u0623\u0648\u0633\u0643\u0627\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 19,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 2,
"duelWon": 1,
"totalContest": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 61,
"touches": 34,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00878308
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Enric Franquesa",
"slug": "enric-franquesa",
"shortName": "E. Franquesa",
"position": "D",
"jerseyNumber": "15",
"height": 174,
"userCount": 166,
"id": 885259,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 856915200,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u0631\u064a\u0643 \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u0631\u0627\u0646\u0643\u0648\u064a\u0632\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 12,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"totalContest": 1,
"totalClearance": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 61,
"touches": 28,
"rating": 6.5,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "S\u00e9bastien Haller",
"firstName": "",
"lastName": "",
"slug": "sebastien-haller",
"shortName": "S. Haller",
"position": "F",
"jerseyNumber": "18",
"height": 190,
"userCount": 26680,
"id": 149731,
"country": {
"alpha2": "CI",
"alpha3": "CIV",
"name": "C\u00f4te d'Ivoire",
"slug": "cote-divoire"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 772243200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0644\u064a\u0631, \u0633\u064a\u0628\u0627\u0633\u062a\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0633. \u0647\u0627\u0644\u064a\u0631"
}
}
},
"teamId": 2845,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 14,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 7,
"duelLost": 8,
"duelWon": 8,
"totalClearance": 4,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0073316
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Matija Nastasi\u0107",
"slug": "matija-nastasic",
"shortName": "M. Nastasi\u0107",
"position": "D",
"jerseyNumber": "22",
"height": 188,
"userCount": 632,
"id": 98440,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733276800,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634, \u0645\u0627\u062a\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0645. \u0646\u0627\u0633\u062a\u0627\u0633\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 3,
"outfielderBlock": 1,
"interceptionWon": 1,
"minutesPlayed": 45,
"touches": 21,
"rating": 6.6,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Adri\u00e0 Altimira",
"firstName": "",
"lastName": "",
"slug": "altimira-adria",
"shortName": "A. Altimira",
"position": "D",
"jerseyNumber": "2",
"height": 170,
"userCount": 220,
"id": 980732,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 985737600,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"interceptionWon": 2,
"totalTackle": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 20,
"rating": 6.2,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.2,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Renato Tapia",
"slug": "renato-tapia",
"shortName": "R. Tapia",
"position": "M",
"jerseyNumber": "5",
"height": 185,
"userCount": 3188,
"id": 352376,
"country": {
"alpha2": "PE",
"alpha3": "PER",
"name": "Peru",
"slug": "peru"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 806889600,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0646\u0627\u062a\u0648 \u062a\u0627\u067e\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u062a\u0627\u067e\u064a\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 3,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 29,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0143,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Seydouba Cisse",
"slug": "seydouba-cisse",
"shortName": "S. Cisse",
"position": "M",
"jerseyNumber": "8",
"height": 172,
"userCount": 3391,
"id": 906065,
"country": {
"alpha2": "GN",
"alpha3": "GIN",
"name": "Guinea",
"slug": "guinea"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981763200,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u062f\u0648\u0628\u0627 \u0633\u064a\u0633\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0633. \u0633\u064a\u0633\u064a\u0647"
}
}
},
"teamId": 2845,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 15,
"accuratePass": 12,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 2,
"wonContest": 2,
"minutesPlayed": 29,
"touches": 20,
"rating": 6.6,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.0115118
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Juli\u00e1n Chicco",
"firstName": "",
"lastName": "",
"slug": "julian-chicco",
"shortName": "J. Chicco",
"position": "M",
"jerseyNumber": "24",
"height": 181,
"userCount": 149,
"id": 822594,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884649600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 13,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 24,
"touches": 21,
"rating": 6.4,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00888311
},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Marko Dmitrovi\u0107",
"firstName": "",
"lastName": "",
"slug": "marko-dmitrovic",
"shortName": "M. Dmitrovi\u0107",
"position": "G",
"jerseyNumber": "13",
"height": 194,
"userCount": 947,
"id": 94527,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696211200,
"proposedMarketValueRaw": {
"value": 830000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634, \u0645\u0627\u0631\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f\u0645\u064a\u062a\u0631\u0648\u0641\u064a\u062a\u0634"
}
}
},
"teamId": 2845,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Jackson Porozo",
"slug": "jackson-porozo",
"shortName": "J. Porozo",
"position": "D",
"jerseyNumber": "4",
"height": 192,
"userCount": 870,
"id": 978518,
"country": {
"alpha2": "EC",
"alpha3": "ECU",
"name": "Ecuador",
"slug": "ecuador"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 965347200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0631\u0648\u0643\u064a \u0625\u064a\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0647. \u0625\u064a\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Dani Raba",
"firstName": "",
"lastName": "",
"slug": "dani-raba",
"shortName": "D. Raba",
"position": "M",
"jerseyNumber": "10",
"height": 184,
"userCount": 260,
"id": 873947,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 814924800,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0627\u0628\u0627, \u062f\u0627\u0646\u064a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u0627\u0628\u0627"
}
}
},
"teamId": 2845,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Munir El Haddadi",
"firstName": "",
"lastName": "",
"slug": "munir-el-haddadi",
"shortName": "M. E. Haddadi",
"position": "M",
"jerseyNumber": "23",
"height": 175,
"userCount": 3194,
"id": 350170,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 809913600,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0627\u0644\u062d\u062f\u0627\u062f\u064a, \u0645\u0646\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0645. \u0627\u0644\u062d\u062f\u0627\u062f\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Roberto L\u00f3pez",
"firstName": "",
"lastName": "",
"slug": "roberto-lopez",
"shortName": "R. L\u00f3pez",
"position": "F",
"jerseyNumber": "21",
"height": 178,
"userCount": 254,
"id": 958018,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956534400,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632 \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0644. \u060c \u0631\u0648\u0628\u0631\u062a\u0648"
}
}
},
"teamId": 2845,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Miguel de la Fuente",
"firstName": "",
"lastName": "",
"slug": "miguel-de-la-fuente",
"shortName": "M. d. l. Fuente",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 472,
"id": 914212,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 936316800,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a \u0644\u0627 \u0641\u0648\u064a\u0646\u062a\u064a, \u0645\u064a\u062c\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0645. \u062f. \u0644. \u0641\u0648\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2845,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
},
{
"player": {
"name": "Diego Garcia",
"firstName": "Diego Garcia",
"lastName": "",
"slug": "diego-garcia",
"shortName": "D. Garcia",
"position": "F",
"jerseyNumber": "19",
"height": 188,
"userCount": 176,
"id": 1121475,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 956016000,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2845,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Legan\u00e9s"
}
]
[
{
"player": {
"name": "Thibaut Courtois",
"firstName": "",
"lastName": "",
"slug": "thibaut-courtois",
"shortName": "T. Courtois",
"position": "G",
"jerseyNumber": "1",
"height": 200,
"userCount": 120688,
"id": 70988,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 705542400,
"proposedMarketValueRaw": {
"value": 24000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0648\u0631\u062a\u0648\u0627, \u062a\u064a\u0628\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0631\u062a\u0648\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 30,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"totalClearance": 1,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 45,
"rating": 7.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"goalsPrevented": 0.025
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Daniel Carvajal",
"slug": "daniel-carvajal",
"shortName": "D. Carvajal",
"position": "D",
"jerseyNumber": "2",
"height": 173,
"userCount": 89435,
"id": 138572,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 695088000,
"proposedMarketValueRaw": {
"value": 11600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0643\u0627\u0631\u0641\u0627\u062e\u0627\u0644"
}
}
},
"teamId": 2829,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 59,
"accuratePass": 52,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 4,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 9,
"duelWon": 4,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 3,
"wonContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"lastManTackle": 1,
"totalTackle": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 93,
"rating": 7.3,
"possessionLostCtrl": 17,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0273054
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "\u00c9der Milit\u00e3o",
"slug": "eder-militao",
"shortName": "\u00c9. Milit\u00e3o",
"position": "D",
"jerseyNumber": "3",
"height": 186,
"userCount": 91447,
"id": 822519,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 885081600,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u064a\u062a\u0648, \u0625\u064a\u062f\u064a\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u064a\u0644\u064a\u062a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 62,
"accuratePass": 57,
"totalLongBalls": 5,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 3,
"duelWon": 4,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 90,
"touches": 74,
"rating": 7.7,
"possessionLostCtrl": 6,
"expectedGoals": 0.1978,
"keyPass": 1,
"ratingVersions": {
"original": 7.7,
"alternative": null
},
"expectedAssists": 0.0223584
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Antonio R\u00fcdiger",
"slug": "antonio-rudiger",
"shortName": "A. R\u00fcdiger",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 116142,
"id": 142622,
"country": {
"alpha2": "DE",
"alpha3": "DEU",
"name": "Germany",
"slug": "germany"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731116800,
"proposedMarketValueRaw": {
"value": 26000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u064a\u063a\u0631, \u0623\u0646\u0637\u0648\u0646\u064a\u0648"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u062f\u064a\u063a\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 74,
"accuratePass": 67,
"totalLongBalls": 9,
"accurateLongBalls": 6,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 3,
"shotOffTarget": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 86,
"rating": 7.6,
"possessionLostCtrl": 8,
"expectedGoals": 0.0523,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.0162151
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Ferland Mendy",
"firstName": "",
"lastName": "",
"slug": "ferland-mendy",
"shortName": "F. Mendy",
"position": "D",
"jerseyNumber": "23",
"height": 178,
"userCount": 47774,
"id": 792073,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 802569600,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a, \u0641\u064a\u0631\u0644\u0627\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u0641. \u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 43,
"accuratePass": 40,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"interceptionWon": 1,
"totalTackle": 3,
"minutesPlayed": 65,
"touches": 54,
"rating": 7.4,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0249512
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Federico Valverde",
"slug": "federico-valverde",
"shortName": "F. Valverde",
"position": "M",
"jerseyNumber": "8",
"height": 181,
"userCount": 205032,
"id": 831808,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 901065600,
"proposedMarketValueRaw": {
"value": 126000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a, \u0641\u064a\u062f\u064a\u0631\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u0641. \u0641\u0627\u0644\u0641\u064a\u0631\u062f\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 63,
"accuratePass": 56,
"totalLongBalls": 7,
"accurateLongBalls": 5,
"goalAssist": 1,
"totalCross": 2,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 5,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 1,
"bigChanceCreated": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 77,
"rating": 8.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0631,
"keyPass": 3,
"ratingVersions": {
"original": 8.2,
"alternative": null
},
"expectedAssists": 0.495096
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Aur\u00e9lien Tchouam\u00e9ni",
"slug": "aurelien-tchouameni",
"shortName": "A. Tchouam\u00e9ni",
"position": "M",
"jerseyNumber": "14",
"height": 188,
"userCount": 107298,
"id": 859025,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 948931200,
"proposedMarketValueRaw": {
"value": 104000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a\u0644\u064a\u0646 \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062a\u0634\u0648\u0627\u0645\u064a\u0646\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 71,
"accuratePass": 66,
"totalLongBalls": 3,
"accurateLongBalls": 3,
"goalAssist": 0,
"aerialWon": 3,
"duelLost": 1,
"duelWon": 10,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"outfielderBlock": 2,
"interceptionWon": 4,
"totalTackle": 4,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 90,
"rating": 8.1,
"possessionLostCtrl": 8,
"expectedGoals": 0.0786,
"keyPass": 1,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"expectedAssists": 0.0445303
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Dani Ceballos",
"slug": "dani-ceballos",
"shortName": "D. Ceballos",
"position": "M",
"jerseyNumber": "19",
"height": 179,
"userCount": 34290,
"id": 547838,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 839376000,
"proposedMarketValueRaw": {
"value": 4200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0628\u0627\u0644\u0648\u0633, \u062f\u0627\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u064a\u0628\u0627\u0644\u0648\u0633"
}
}
},
"teamId": 2829,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 51,
"accuratePass": 44,
"totalLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 5,
"duelWon": 5,
"challengeLost": 2,
"dispossessed": 1,
"totalTackle": 4,
"wasFouled": 1,
"fouls": 2,
"minutesPlayed": 65,
"touches": 64,
"rating": 6.9,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.118956
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rodrygo",
"firstName": "",
"lastName": "",
"slug": "rodrygo",
"shortName": "Rodrygo",
"position": "F",
"jerseyNumber": "11",
"height": 174,
"userCount": 317094,
"id": 910536,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978998400,
"proposedMarketValueRaw": {
"value": 117000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 35,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 4,
"aerialLost": 1,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 6,
"wonContest": 3,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 89,
"touches": 63,
"rating": 8,
"possessionLostCtrl": 11,
"expectedGoals": 0.0473,
"keyPass": 5,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.422235
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Kylian Mbapp\u00e9",
"slug": "kylian-mbappe",
"shortName": "K. Mbapp\u00e9",
"position": "F",
"jerseyNumber": "9",
"height": 178,
"userCount": 611826,
"id": 826643,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 914112000,
"proposedMarketValueRaw": {
"value": 191000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u064a\u0644\u064a\u0627\u0646 \u0645\u0628\u0627\u0628"
},
"shortNameTranslation": {
"ar": "\u0643. \u0645\u0628\u0627\u0628"
}
}
},
"teamId": 2829,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 22,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 1,
"totalContest": 4,
"wonContest": 2,
"shotOffTarget": 1,
"onTargetScoringAttempt": 3,
"blockedScoringAttempt": 5,
"goals": 2,
"wasFouled": 1,
"totalOffside": 1,
"minutesPlayed": 84,
"touches": 49,
"rating": 8.8,
"possessionLostCtrl": 10,
"expectedGoals": 1.6972,
"keyPass": 1,
"ratingVersions": {
"original": 8.8,
"alternative": null
},
"expectedAssists": 0.041768
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Vin\u00edcius J\u00fanior",
"slug": "vinicius-junior",
"shortName": "Vin\u00edcius Jr.",
"position": "F",
"jerseyNumber": "7",
"height": 176,
"userCount": 519891,
"id": 868812,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 963360000,
"proposedMarketValueRaw": {
"value": 208000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u064a\u0648\u0631, \u0641\u064a\u0646\u064a\u0633\u064a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u0641. \u062c\u0648\u0646\u064a\u0648\u0631"
}
}
},
"teamId": 2829,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 34,
"totalLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 1,
"totalContest": 6,
"wonContest": 2,
"blockedScoringAttempt": 2,
"hitWoodwork": 1,
"wasFouled": 5,
"fouls": 2,
"penaltyWon": 1,
"minutesPlayed": 90,
"touches": 61,
"rating": 7.6,
"possessionLostCtrl": 16,
"expectedGoals": 0.0856,
"keyPass": 4,
"ratingVersions": {
"original": 7.6,
"alternative": null
},
"expectedAssists": 0.262097
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Garc\u00eda",
"firstName": "",
"lastName": "",
"slug": "fran-garcia",
"shortName": "F. Garcia",
"position": "D",
"jerseyNumber": "20",
"height": 170,
"userCount": 30026,
"id": 851271,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 934588800,
"proposedMarketValueRaw": {
"value": 13800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0627\u0631\u0633\u064a\u0627 \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0641\u0631\u0627\u0646\u0633\u064a\u0633\u0643\u0648"
}
}
},
"teamId": 2829,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 10,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"totalClearance": 1,
"minutesPlayed": 25,
"touches": 15,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.00774716
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Brahim D\u00edaz",
"slug": "brahim-diaz",
"shortName": "B. D\u00edaz",
"position": "M",
"jerseyNumber": "21",
"height": 170,
"userCount": 127963,
"id": 835485,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 933638400,
"proposedMarketValueRaw": {
"value": 42000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u064a\u0627\u0632, \u0625\u0628\u0631\u0627\u0647\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u0625. \u062f\u064a\u0627\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 12,
"accuratePass": 11,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 25,
"touches": 23,
"rating": 7.4,
"possessionLostCtrl": 5,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.473621
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Luka Modri\u0107",
"slug": "luka-modric",
"shortName": "L. Modri\u0107",
"position": "M",
"jerseyNumber": "10",
"height": 173,
"userCount": 253556,
"id": 15466,
"country": {
"alpha2": "HR",
"alpha3": "HRV",
"name": "Croatia",
"slug": "croatia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 495072000,
"proposedMarketValueRaw": {
"value": 6600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u062f\u0631\u064a\u062a\u0634, \u0644\u0648\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0644. \u0645\u0648\u062f\u0631\u064a\u062a\u0634"
}
}
},
"teamId": 2829,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 24,
"accuratePass": 22,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"minutesPlayed": 13,
"touches": 30,
"rating": 6.8,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0408654
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Endrick",
"firstName": "",
"lastName": "",
"slug": "endrick",
"shortName": "Endrick",
"position": "F",
"jerseyNumber": "16",
"height": 173,
"userCount": 197671,
"id": 1174937,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1153440000,
"proposedMarketValueRaw": {
"value": 63000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u0646\u062f\u0631\u064a\u0643 \u0641\u064a\u0644\u064a\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u0625. \u0641\u064a\u0644\u064a\u0628\u064a"
}
}
},
"teamId": 2829,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "F",
"substitute": true,
"statistics": {
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 8,
"touches": 3,
"rating": 6.6,
"expectedGoals": 0.231,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Andriy Lunin",
"slug": "andriy-lunin",
"shortName": "A. Lunin",
"position": "G",
"jerseyNumber": "13",
"height": 191,
"userCount": 56761,
"id": 857574,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918691200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0646\u064a\u0646, \u0623\u0646\u062f\u0631\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0646\u064a\u0646"
}
}
},
"teamId": 2829,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Fran Gonzalez",
"slug": "gonzalez-fran",
"shortName": "F. Gonz\u00e1lez",
"position": "G",
"jerseyNumber": "26",
"height": 199,
"userCount": 4221,
"id": 1493226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1119571200,
"proposedMarketValueRaw": {
"value": 180000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Fran"
},
"shortNameTranslation": {
"ar": "Fran"
}
}
},
"teamId": 5069,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Lucas V\u00e1zquez",
"firstName": "",
"lastName": "",
"slug": "lucas-vazquez",
"shortName": "L. V\u00e1zquez",
"position": "D",
"jerseyNumber": "17",
"height": 173,
"userCount": 40961,
"id": 255239,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 678326400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0627\u0633\u0643\u0648\u064a\u0632, \u0644\u0648\u0643\u0627\u0633"
},
"shortNameTranslation": {
"ar": "\u0644. \u0641\u0627\u0633\u0643\u0648\u064a\u0632"
}
}
},
"teamId": 2829,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Jacobo Naveros",
"firstName": "",
"lastName": "",
"slug": "jacobo-naveros",
"shortName": "J. Naveros",
"position": "D",
"jerseyNumber": "31",
"height": 188,
"userCount": 1820,
"id": 1403348,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1104969600,
"proposedMarketValueRaw": {
"value": 210000,
"currency": "EUR"
}
},
"teamId": 5069,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Arda G\u00fcler",
"firstName": "Arda Guler",
"slug": "arda-guler",
"shortName": "A. G\u00fcler",
"position": "M",
"jerseyNumber": "15",
"height": 176,
"userCount": 250221,
"id": 1091116,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109289600,
"proposedMarketValueRaw": {
"value": 43000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u0644\u0631\u060c \u0623\u0631\u062f\u0627"
},
"shortNameTranslation": {
"ar": "\u063a. \u0623\u0631\u062f\u0627"
}
}
},
"teamId": 2829,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Real Madrid"
},
{
"player": {
"name": "Rui Silva",
"slug": "rui-silva",
"shortName": "R. Silva",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1311,
"id": 253809,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760579200,
"proposedMarketValueRaw": {
"value": 7600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0644\u0641\u0627, \u0631\u0648\u064a"
},
"shortNameTranslation": {
"ar": "\u0631. \u0633\u064a\u0644\u0641\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 23,
"accuratePass": 13,
"totalLongBalls": 12,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"totalClearance": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 1,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 4,
"saves": 5,
"totalKeeperSweeper": 2,
"accurateKeeperSweeper": 2,
"minutesPlayed": 90,
"touches": 35,
"rating": 7.1,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.1124
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Youssouf Sabaly",
"firstName": "",
"lastName": "",
"slug": "youssouf-sabaly",
"shortName": "Y. Sabaly",
"position": "D",
"jerseyNumber": "23",
"height": 174,
"userCount": 4769,
"id": 111803,
"country": {
"alpha2": "SN",
"alpha3": "SEN",
"name": "Senegal",
"slug": "senegal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 731289600,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0648\u0633\u0648\u0641 \u0633\u0627\u0628\u0627\u0644\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0633\u0627\u0628\u0627\u0644\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 39,
"accuratePass": 36,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 8,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 2,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 3,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 6.9,
"possessionLostCtrl": 9,
"keyPass": 2,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.177609
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Diego Llorente",
"slug": "diego-llorente",
"shortName": "D. Llorente",
"position": "D",
"jerseyNumber": "3",
"height": 185,
"userCount": 1033,
"id": 305278,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 745459200,
"proposedMarketValueRaw": {
"value": 7200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0631\u064a\u0646\u062a\u064a, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0631\u064a\u0646\u062a\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 30,
"accuratePass": 26,
"totalLongBalls": 5,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 5,
"interceptionWon": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Natan",
"firstName": "",
"lastName": "",
"slug": "natan",
"shortName": "Natan",
"position": "D",
"jerseyNumber": "6",
"height": 188,
"userCount": 2254,
"id": 1015287,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981417600,
"proposedMarketValueRaw": {
"value": 12700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0646\u0627\u062a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 19,
"totalLongBalls": 3,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 3,
"duelWon": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 90,
"touches": 29,
"rating": 6.3,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Romain Perraud",
"slug": "romain-perraud",
"shortName": "R. Perraud",
"position": "D",
"jerseyNumber": "15",
"height": 173,
"userCount": 397,
"id": 827519,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 874886400,
"proposedMarketValueRaw": {
"value": 4900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u0627\u0646 \u0628\u064a\u0631\u0648\u062f"
},
"shortNameTranslation": {
"ar": "\u0631. \u0628\u064a\u0631\u0648\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 36,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 3,
"accurateCross": 1,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 5,
"challengeLost": 6,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"blockedScoringAttempt": 2,
"totalClearance": 3,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 69,
"rating": 6.5,
"possessionLostCtrl": 15,
"expectedGoals": 0.0527,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.221714
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Marc Roca",
"slug": "marc-roca",
"shortName": "M. Roca",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 1174,
"id": 847128,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 848966400,
"proposedMarketValueRaw": {
"value": 9500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0643\u0627, \u0645\u0627\u0631\u0643"
},
"shortNameTranslation": {
"ar": "\u0645. \u0631\u0648\u0643\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 44,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 6,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 90,
"touches": 65,
"rating": 7.3,
"possessionLostCtrl": 4,
"expectedGoals": 0.0496,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.213871
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "William Carvalho",
"slug": "william-carvalho",
"shortName": "W. Carvalho",
"position": "M",
"jerseyNumber": "14",
"height": 187,
"userCount": 1722,
"id": 137978,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 702604800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648, \u0648\u064a\u0644\u064a\u0627\u0645"
},
"shortNameTranslation": {
"ar": "\u0648. \u0643\u0627\u0631\u0641\u0627\u0644\u064a\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 5,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 48,
"rating": 6.6,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.02593
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Rodri S\u00e1nchez",
"slug": "rodri-sanchez",
"shortName": "R. S\u00e1nchez",
"position": "M",
"jerseyNumber": "10",
"height": 175,
"userCount": 652,
"id": 1031421,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958435200,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a"
}
}
},
"teamId": 44444,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 36,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 2,
"aerialLost": 1,
"duelLost": 4,
"duelWon": 2,
"dispossessed": 1,
"totalContest": 1,
"onTargetScoringAttempt": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"errorLeadToAShot": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 72,
"touches": 51,
"rating": 6.6,
"possessionLostCtrl": 9,
"expectedGoals": 0.0253,
"keyPass": 2,
"ratingVersions": {
"original": 6.6,
"alternative": null
},
"expectedAssists": 0.123534
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Pablo Fornals",
"slug": "pablo-fornals",
"shortName": "P. Fornals",
"position": "M",
"jerseyNumber": "18",
"height": 178,
"userCount": 1625,
"id": 816763,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 824947200,
"proposedMarketValueRaw": {
"value": 14700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u0648\u0631\u0646\u0627\u0644\u0633, \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u0641\u0648\u0631\u0646\u0627\u0644\u0633"
}
}
},
"teamId": 2816,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 42,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 2,
"duelLost": 3,
"challengeLost": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 83,
"touches": 54,
"rating": 6.7,
"possessionLostCtrl": 10,
"expectedGoals": 0.0614,
"keyPass": 2,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.035392
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Abdessamad Ezzalzouli",
"firstName": "",
"lastName": "",
"slug": "abdessamad-ezzalzouli",
"shortName": "A. Ezzalzouli",
"position": "M",
"jerseyNumber": "10",
"height": 177,
"userCount": 27290,
"id": 1011375,
"country": {
"alpha2": "MA",
"alpha3": "MAR",
"name": "Morocco",
"slug": "morocco"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1008547200,
"proposedMarketValueRaw": {
"value": 12800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0632\u0627\u0644\u0632\u0648\u0644\u064a \u060c \u0639\u0628\u062f \u0627\u0644\u0635\u0645\u062f"
},
"shortNameTranslation": {
"ar": "\u0639. \u060c \u0639. \u0627\u0644\u0635\u0645\u062f"
}
}
},
"teamId": 2816,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 27,
"accuratePass": 21,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 11,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 4,
"wonContest": 3,
"bigChanceMissed": 1,
"shotOffTarget": 3,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 1,
"minutesPlayed": 83,
"touches": 50,
"rating": 7.3,
"possessionLostCtrl": 12,
"expectedGoals": 0.2596,
"keyPass": 1,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0244742
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Aitor Ruibal",
"firstName": "",
"lastName": "",
"slug": "aitor-ruibal",
"shortName": "A. Ruibal",
"position": "D",
"jerseyNumber": "24",
"height": 176,
"userCount": 393,
"id": 893062,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 827452800,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u064a\u0628\u0627\u0644 \u060c \u0622\u064a\u062a\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u0622\u064a\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 13,
"accuratePass": 10,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 2,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 57,
"touches": 20,
"rating": 6.5,
"possessionLostCtrl": 6,
"expectedGoals": 0.029,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0207484
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Johnny",
"firstName": "",
"lastName": "",
"slug": "johnny",
"shortName": "Johnny",
"position": "M",
"jerseyNumber": "4",
"height": 186,
"userCount": 2179,
"id": 990169,
"country": {
"alpha2": "US",
"alpha3": "USA",
"name": "USA",
"slug": "usa"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1000944000,
"proposedMarketValueRaw": {
"value": 18700000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 26,
"accuratePass": 23,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 5,
"challengeLost": 1,
"totalClearance": 1,
"totalTackle": 2,
"wasFouled": 3,
"fouls": 1,
"minutesPlayed": 33,
"touches": 34,
"rating": 6.7,
"possessionLostCtrl": 4,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Vitor Roque",
"firstName": "Vitor Roque",
"slug": "vitor-roque",
"shortName": "Vitor Roque",
"position": "F",
"jerseyNumber": "8",
"height": 174,
"userCount": 90786,
"id": 1150391,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1109548800,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 2,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"fouls": 2,
"minutesPlayed": 33,
"touches": 12,
"rating": 6.5,
"possessionLostCtrl": 4,
"expectedGoals": 0.0894,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.0141629
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Assane Diao",
"firstName": "",
"lastName": "",
"slug": "assane-diao",
"shortName": "A. Diao",
"position": "M",
"jerseyNumber": "38",
"height": 185,
"userCount": 1666,
"id": 1493689,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1126051200,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Diao Diaoune, Assane"
},
"shortNameTranslation": {
"ar": "A. D. Diaoune"
}
}
},
"teamId": 2816,
"shirtNumber": 38,
"jerseyNumber": "38",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 2,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"fouls": 1,
"minutesPlayed": 18,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Iker Losada",
"slug": "iker-losada",
"shortName": "I. Losada",
"position": "M",
"jerseyNumber": "19",
"height": 175,
"userCount": 266,
"id": 992331,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996624000,
"proposedMarketValueRaw": {
"value": 2000000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"totalContest": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.4,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0500186
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Juanmi",
"firstName": "",
"lastName": "",
"slug": "juanmi",
"shortName": "Juanmi",
"position": "F",
"jerseyNumber": "7",
"height": 169,
"userCount": 634,
"id": 96369,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 737856000,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0645\u064a"
}
}
},
"teamId": 2816,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 3,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"fouls": 1,
"minutesPlayed": 14,
"touches": 5,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Francisco Vieites",
"slug": "francisco-vieites",
"shortName": "F. Vieites",
"position": "G",
"jerseyNumber": "25",
"height": 196,
"userCount": 170,
"id": 929975,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 926035200,
"proposedMarketValueRaw": {
"value": 450000,
"currency": "EUR"
}
},
"teamId": 2816,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Adri\u00e1n",
"firstName": "",
"lastName": "",
"slug": "adrian",
"shortName": "Adri\u00e1n",
"position": "G",
"jerseyNumber": "13",
"height": 190,
"userCount": 2521,
"id": 50539,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 536630400,
"proposedMarketValueRaw": {
"value": 620000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623\u062f\u0631\u064a\u0627\u0646"
}
}
},
"teamId": 2816,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Ricardo Rodr\u00edguez",
"slug": "ricardo-rodriguez",
"shortName": "R. Rodr\u00edguez",
"position": "D",
"jerseyNumber": "12",
"height": 182,
"userCount": 1293,
"id": 67769,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 714700800,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u062f\u0631\u064a\u063a\u064a\u0632 \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
},
"shortNameTranslation": {
"ar": "\u0631. \u0631\u064a\u0643\u0627\u0631\u062f\u0648"
}
}
},
"teamId": 2816,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Lucas Alcazar",
"firstName": "",
"lastName": "",
"slug": "lucas-alcazar",
"shortName": "L. Alc\u00e1zar",
"position": "D",
"jerseyNumber": "3",
"height": 181,
"userCount": 71,
"id": 1049200,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026345600,
"proposedMarketValueRaw": {
"value": 140000,
"currency": "EUR"
}
},
"teamId": 24358,
"shirtNumber": 43,
"jerseyNumber": "43",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "H\u00e9ctor Beller\u00edn",
"slug": "hector-bellerin",
"shortName": "H. Beller\u00edn",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 3575,
"id": 188365,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 795571200,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u064a\u0643\u062a\u0648\u0631, \u0628\u064a\u0644\u064a\u0631\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0647\u064a\u0643\u062a\u0648\u0631"
}
}
},
"teamId": 2816,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Sergi Altimira",
"firstName": "",
"lastName": "",
"slug": "sergi-altimira",
"shortName": "S. Altimira",
"position": "M",
"jerseyNumber": "16",
"height": 188,
"userCount": 405,
"id": 1137814,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 998697600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u0633. \u0623\u0644\u062a\u064a\u0645\u064a\u0631\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
},
{
"player": {
"name": "Chimy \u00c1vila",
"firstName": "",
"lastName": "",
"slug": "chimy-avila",
"shortName": "C. \u00c1vila",
"position": "F",
"jerseyNumber": "9",
"height": 171,
"userCount": 1700,
"id": 789381,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 760492800,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0641\u064a\u0644\u0627, \u0625\u0632\u064a\u0643\u0648\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u0625. \u0623\u0641\u064a\u0644\u0627"
}
}
},
"teamId": 2816,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Real Betis"
}
]
[
{
"player": {
"name": "David Soria",
"slug": "david-soria",
"shortName": "D. Soria",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 605,
"id": 604258,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 733881600,
"proposedMarketValueRaw": {
"value": 4800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0631\u064a\u0627, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0633\u0648\u0631\u064a\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 11,
"accuratePass": 7,
"totalLongBalls": 6,
"accurateLongBalls": 2,
"goalAssist": 0,
"goodHighClaim": 1,
"minutesPlayed": 90,
"touches": 15,
"rating": 6.9,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Iglesias",
"firstName": "",
"lastName": "",
"slug": "juan-iglesias",
"shortName": "J. Iglesias",
"position": "D",
"jerseyNumber": "21",
"height": 185,
"userCount": 297,
"id": 949707,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 899424000,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u063a\u0644\u064a\u0633\u064a\u0627\u0633 \u060c \u062e\u0648\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u060c \u062e\u0648\u0627\u0646"
}
}
},
"teamId": 2859,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 40,
"accuratePass": 23,
"totalLongBalls": 8,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 6,
"accurateCross": 1,
"aerialLost": 1,
"aerialWon": 3,
"duelLost": 6,
"duelWon": 9,
"challengeLost": 2,
"dispossessed": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 4,
"totalTackle": 3,
"wasFouled": 3,
"fouls": 2,
"minutesPlayed": 90,
"touches": 77,
"rating": 7.2,
"possessionLostCtrl": 29,
"expectedGoals": 0.019,
"keyPass": 2,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.438892
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Djen\u00e9",
"slug": "djene",
"shortName": "Djen\u00e9",
"position": "D",
"jerseyNumber": "2",
"height": 178,
"userCount": 1382,
"id": 307702,
"country": {
"alpha2": "TG",
"alpha3": "TGO",
"name": "Togo",
"slug": "togo"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694137600,
"proposedMarketValueRaw": {
"value": 2700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0643\u0648\u0646\u0627\u0645, \u062f\u062c\u064a\u0646\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0627\u0643\u0648\u0646\u0627\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 2,
"jerseyNumber": "2",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 34,
"accuratePass": 25,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 2,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 43,
"rating": 7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.00798958
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Omar Alderete",
"slug": "omar-alderete",
"shortName": "O. Alderete",
"position": "D",
"jerseyNumber": "15",
"height": 187,
"userCount": 1368,
"id": 805137,
"country": {
"alpha2": "PY",
"alpha3": "PRY",
"name": "Paraguay",
"slug": "paraguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 851558400,
"proposedMarketValueRaw": {
"value": 5300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u0639. \u0627\u0644\u062f\u064a\u0631\u064a\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 36,
"totalLongBalls": 18,
"accurateLongBalls": 11,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 2,
"duelLost": 4,
"duelWon": 5,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 7,
"outfielderBlock": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 67,
"rating": 7.9,
"possessionLostCtrl": 13,
"expectedGoals": 0.0294,
"keyPass": 1,
"ratingVersions": {
"original": 7.9,
"alternative": null
},
"expectedAssists": 0.0369044
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Diego Rico",
"slug": "diego-rico",
"shortName": "D. Rico",
"position": "D",
"jerseyNumber": "16",
"height": 181,
"userCount": 648,
"id": 350560,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 730425600,
"proposedMarketValueRaw": {
"value": 1500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0643\u0648, \u062f\u064a\u064a\u063a\u0648"
},
"shortNameTranslation": {
"ar": "\u062f. \u0631\u064a\u0643\u0648"
}
}
},
"teamId": 2859,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 27,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 6,
"duelLost": 1,
"duelWon": 7,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 5,
"wasFouled": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 7.3,
"possessionLostCtrl": 22,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0109159
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Luis Milla",
"slug": "luis-milla",
"shortName": "L. Milla",
"position": "M",
"jerseyNumber": "5",
"height": 175,
"userCount": 984,
"id": 811629,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 781488000,
"proposedMarketValueRaw": {
"value": 3200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
},
"shortNameTranslation": {
"ar": "\u0645\u064a\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 46,
"accuratePass": 35,
"totalLongBalls": 9,
"accurateLongBalls": 5,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 4,
"aerialWon": 3,
"duelLost": 9,
"duelWon": 9,
"dispossessed": 2,
"totalContest": 3,
"wonContest": 2,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 2,
"wasFouled": 2,
"fouls": 3,
"minutesPlayed": 90,
"touches": 72,
"rating": 7.4,
"possessionLostCtrl": 21,
"expectedGoals": 0.0183,
"keyPass": 4,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0846605
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Nabil Aberdin",
"firstName": "",
"lastName": "",
"slug": "nabil-aberdin",
"shortName": "N. Aberdin",
"position": "D",
"jerseyNumber": "27",
"height": 182,
"userCount": 363,
"id": 1136806,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1030060800,
"proposedMarketValueRaw": {
"value": 560000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 15,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 4,
"duelLost": 3,
"duelWon": 7,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 22,
"rating": 6.9,
"possessionLostCtrl": 5,
"expectedGoals": 0.0253,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.0809162
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles P\u00e9rez",
"firstName": "",
"lastName": "",
"slug": "carles-perez",
"shortName": "C. P\u00e9rez",
"position": "M",
"jerseyNumber": "17",
"height": 172,
"userCount": 1177,
"id": 794950,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 887587200,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0631\u064a\u0632, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0628\u064a\u0631\u064a\u0632"
}
}
},
"teamId": 2859,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"duelLost": 8,
"duelWon": 3,
"dispossessed": 2,
"totalContest": 2,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalTackle": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 67,
"touches": 35,
"rating": 6.4,
"possessionLostCtrl": 15,
"expectedGoals": 0.1649,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.00674365
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Christantus Uche",
"firstName": "Christantus Uche",
"slug": "christantus-uche",
"shortName": "C. Uche",
"position": "M",
"jerseyNumber": "6",
"height": 190,
"userCount": 822,
"id": 1884145,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1053302400,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 13,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 3,
"duelWon": 9,
"totalContest": 4,
"wonContest": 3,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 89,
"touches": 40,
"rating": 7.4,
"possessionLostCtrl": 16,
"expectedGoals": 0.0533,
"keyPass": 3,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.116275
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Sola",
"firstName": "",
"lastName": "",
"slug": "alex-sola",
"shortName": "\u00c1. Sola",
"position": "M",
"jerseyNumber": "7",
"height": 178,
"userCount": 259,
"id": 966836,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 928886400,
"proposedMarketValueRaw": {
"value": 4300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648\u0644\u0627, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0633\u0648\u0644\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 9,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 1,
"aerialWon": 5,
"duelLost": 12,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 8,
"wonContest": 1,
"shotOffTarget": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"fouls": 3,
"totalOffside": 1,
"minutesPlayed": 85,
"touches": 42,
"rating": 5.9,
"possessionLostCtrl": 23,
"expectedGoals": 0.0298,
"ratingVersions": {
"original": 5.9,
"alternative": null
},
"expectedAssists": 0.006811
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Bertu\u011f Y\u0131ld\u0131r\u0131m",
"firstName": "Bertug Yildirim",
"slug": "bertug-ozgur-yildirim",
"shortName": "B. Y\u0131ld\u0131r\u0131m",
"position": "F",
"jerseyNumber": "10",
"height": 186,
"userCount": 2238,
"id": 1382235,
"country": {
"alpha2": "TR",
"alpha3": "TUR",
"name": "T\u00fcrkiye",
"slug": "turkiye"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1026432000,
"proposedMarketValueRaw": {
"value": 3300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0631\u062a\u0648\u063a \u064a\u0644\u062f\u0631\u064a\u0645"
},
"shortNameTranslation": {
"ar": "\u064a. \u064a\u0644\u062f\u0631\u064a\u0645"
}
}
},
"teamId": 2859,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 9,
"accuratePass": 6,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 3,
"duelLost": 4,
"duelWon": 5,
"totalClearance": 1,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 78,
"touches": 17,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00683408
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Mauro Arambarri",
"slug": "mauro-arambarri",
"shortName": "M. Arambarri",
"position": "M",
"jerseyNumber": "8",
"height": 175,
"userCount": 820,
"id": 385888,
"country": {
"alpha2": "UY",
"alpha3": "URY",
"name": "Uruguay",
"slug": "uruguay"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 812419200,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a, \u0645\u0627\u0648\u0631\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u0623\u0631\u0627\u0645\u0628\u0627\u0631\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 16,
"accuratePass": 12,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 2,
"shotOffTarget": 1,
"wasFouled": 1,
"minutesPlayed": 23,
"touches": 22,
"rating": 6.8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0111,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00942512
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Carles Ale\u00f1\u00e1",
"firstName": "",
"lastName": "",
"slug": "carles-alena",
"shortName": "C. Ale\u00f1\u00e1",
"position": "M",
"jerseyNumber": "11",
"height": 180,
"userCount": 1570,
"id": 794937,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883958400,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u064a\u0646\u0627, \u0643\u0627\u0631\u0644\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0643. \u0623\u0644\u064a\u0646\u0627"
}
}
},
"teamId": 2859,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 2,
"duelWon": 3,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"minutesPlayed": 23,
"touches": 12,
"rating": 6.8,
"possessionLostCtrl": 3,
"expectedGoals": 0.1662,
"keyPass": 1,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Peter Gonz\u00e1lez",
"firstName": "",
"lastName": "",
"slug": "peter-gonzalez",
"shortName": "P. Gonz\u00e1lez",
"position": "F",
"jerseyNumber": "19",
"height": 178,
"userCount": 1208,
"id": 1048927,
"country": {
"alpha2": "DO",
"alpha3": "DOM",
"name": "Dominican Republic",
"slug": "dominican-republic"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027555200,
"proposedMarketValueRaw": {
"value": 2800000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 4,
"totalLongBalls": 1,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 2,
"duelWon": 1,
"dispossessed": 1,
"totalContest": 1,
"blockedScoringAttempt": 1,
"minutesPlayed": 12,
"touches": 13,
"rating": 6.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.0355,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "John Patrick",
"slug": "john-joe-patrick-finn",
"shortName": "J. Patrick",
"position": "M",
"jerseyNumber": "31",
"height": 192,
"userCount": 111,
"id": 1100831,
"country": {
"alpha2": "IE",
"alpha3": "IRL",
"name": "Ireland",
"slug": "ireland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1064361600,
"proposedMarketValueRaw": {
"value": 205000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 5,
"accuratePass": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 3,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"wasFouled": 1,
"minutesPlayed": 13,
"touches": 9,
"rating": 6.7,
"possessionLostCtrl": 1,
"expectedGoals": 0.0217,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Yellu Santiago",
"firstName": "Jes\u00fas Santiago",
"slug": "yellu-santiago",
"shortName": "J. Santiago",
"position": "M",
"jerseyNumber": "20",
"height": 192,
"userCount": 138,
"id": 1211005,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1085443200,
"proposedMarketValueRaw": {
"value": 905000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 4,
"rating": 6.5,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Ji\u0159\u00ed Let\u00e1\u010dek",
"firstName": "",
"lastName": "",
"slug": "jiri-letacek",
"shortName": "J. Let\u00e1\u010dek",
"position": "G",
"jerseyNumber": "30",
"height": 196,
"userCount": 110,
"id": 826047,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 915840000,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Gorka Rivera",
"firstName": "",
"lastName": "",
"slug": "gorka-rivera",
"shortName": "G. Rivera",
"position": "D",
"jerseyNumber": "30",
"userCount": 11,
"id": 1390614,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1091318400,
"proposedMarketValueRaw": {
"value": 105000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0641\u064a\u0631\u0627 \u060c \u062c\u0648\u0631\u0643\u0627"
},
"shortNameTranslation": {
"ar": "\u0631. \u060c \u062c\u0648\u0631\u0643\u0627"
}
}
},
"teamId": 43753,
"shirtNumber": 30,
"jerseyNumber": "30",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Domingos Duarte",
"firstName": "",
"lastName": "",
"slug": "domingos-duarte",
"shortName": "D. Duarte",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 509,
"id": 576276,
"country": {
"alpha2": "PT",
"alpha3": "PRT",
"name": "Portugal",
"slug": "portugal"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 794793600,
"proposedMarketValueRaw": {
"value": 1100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0627\u0631\u062a\u064a, \u062f\u0648\u0645\u064a\u0646\u063a\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062f. \u062f\u0648\u0627\u0631\u062a\u064a"
}
}
},
"teamId": 2859,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Juan Berrocal",
"slug": "juan-berrocal",
"shortName": "J. Berrocal",
"position": "D",
"jerseyNumber": "4",
"height": 187,
"userCount": 88,
"id": 851226,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918172800,
"proposedMarketValueRaw": {
"value": 2100000,
"currency": "EUR"
}
},
"teamId": 2859,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Alberto Risco",
"firstName": "Alberto Risco",
"slug": "alberto-risco",
"shortName": "A. Risco",
"position": "M",
"jerseyNumber": "26",
"userCount": 36,
"id": 1841875,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1125360000,
"proposedMarketValueRaw": {
"value": 190000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "Coba da Costa",
"slug": "da-costa-coba-gomes",
"shortName": "C. d. Costa",
"position": "F",
"jerseyNumber": "29",
"userCount": 85,
"id": 1392054,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027641600,
"proposedMarketValueRaw": {
"value": 52000,
"currency": "EUR"
}
},
"teamId": 43753,
"shirtNumber": 29,
"jerseyNumber": "29",
"position": "F",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Getafe"
},
{
"player": {
"name": "\u00c1lex Remiro",
"slug": "alex-remiro",
"shortName": "\u00c1. Remiro",
"position": "G",
"jerseyNumber": "1",
"height": 191,
"userCount": 1691,
"id": 791773,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 796003200,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u064a\u0645\u064a\u0631\u0648, \u0623\u0644\u064a\u0643\u0633"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u064a\u0645\u064a\u0631\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 44,
"accuratePass": 27,
"totalLongBalls": 25,
"accurateLongBalls": 8,
"goalAssist": 0,
"aerialWon": 1,
"duelWon": 1,
"totalClearance": 1,
"wasFouled": 1,
"goodHighClaim": 1,
"saves": 1,
"minutesPlayed": 90,
"touches": 53,
"rating": 7.1,
"possessionLostCtrl": 18,
"keyPass": 1,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"goalsPrevented": 0.0822
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Hamari Traor\u00e9",
"firstName": "",
"lastName": "",
"slug": "hamari-traore",
"shortName": "H. Traor\u00e9",
"position": "D",
"jerseyNumber": "18",
"height": 175,
"userCount": 3598,
"id": 362014,
"country": {
"alpha2": "ML",
"alpha3": "MLI",
"name": "Mali",
"slug": "mali"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 696470400,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0647\u0627\u0645\u0627\u0631\u064a \u062a\u0631\u0627\u0648\u0631\u064a"
},
"shortNameTranslation": {
"ar": "\u0647. \u062a\u0631\u0627\u0648\u0631\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 24,
"accuratePass": 18,
"totalLongBalls": 5,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 3,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 1,
"minutesPlayed": 66,
"touches": 45,
"rating": 7,
"possessionLostCtrl": 12,
"ratingVersions": {
"original": 7,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Igor Zubeldia",
"slug": "igor-zubeldia",
"shortName": "I. Zubeldia",
"position": "D",
"jerseyNumber": "5",
"height": 180,
"userCount": 903,
"id": 838159,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 859680000,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627, \u0625\u064a\u062c\u0648\u0631"
},
"shortNameTranslation": {
"ar": "\u0625. \u0632\u0648\u0628\u064a\u0644\u062f\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 37,
"accuratePass": 29,
"totalLongBalls": 7,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 4,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 44,
"rating": 6.8,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Pacheco",
"firstName": "",
"lastName": "",
"slug": "jon-pacheco",
"shortName": "J. Pacheco",
"position": "D",
"jerseyNumber": "20",
"height": 184,
"userCount": 450,
"id": 934383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 978912000,
"proposedMarketValueRaw": {
"value": 15500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
},
"shortNameTranslation": {
"ar": "\u062c. \u0628\u0627\u062a\u0634\u064a\u0643\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 42,
"accuratePass": 33,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 3,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 12,
"outfielderBlock": 2,
"interceptionWon": 1,
"totalTackle": 2,
"minutesPlayed": 90,
"touches": 60,
"rating": 7.5,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 7.5,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Aramburu",
"firstName": "Jon Aramburu",
"slug": "jon-aramburu",
"shortName": "J. Aramburu",
"position": "D",
"jerseyNumber": "27",
"height": 176,
"userCount": 3329,
"id": 1116388,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1027382400,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 18,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 4,
"duelLost": 4,
"duelWon": 6,
"challengeLost": 1,
"totalContest": 1,
"totalClearance": 6,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 59,
"touches": 36,
"rating": 6.7,
"possessionLostCtrl": 15,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Takefusa Kubo",
"firstName": "",
"lastName": "",
"slug": "kubo-takefusa",
"shortName": "T. Kubo",
"position": "M",
"jerseyNumber": "14",
"height": 174,
"userCount": 27500,
"id": 880218,
"country": {
"alpha2": "JP",
"alpha3": "JPN",
"name": "Japan",
"slug": "japan"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 991612800,
"proposedMarketValueRaw": {
"value": 52000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062a\u0627\u0643\u064a\u0641\u0648\u0633\u0627 \u0643\u0648\u0628\u0648"
},
"shortNameTranslation": {
"ar": "\u062a. \u0643\u0648\u0628\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 7,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 3,
"totalContest": 4,
"wonContest": 1,
"totalClearance": 2,
"wasFouled": 2,
"minutesPlayed": 60,
"touches": 23,
"rating": 6.7,
"possessionLostCtrl": 8,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.00726571
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Mart\u00edn Zubimendi",
"slug": "martin-zubimendi",
"shortName": "M. Zubimendi",
"position": "M",
"jerseyNumber": "4",
"height": 180,
"userCount": 4676,
"id": 966837,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 917913600,
"proposedMarketValueRaw": {
"value": 62000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646 \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u0632\u0648\u0628\u064a\u0645\u0646\u062f\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 36,
"accuratePass": 28,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 3,
"aerialWon": 1,
"duelLost": 5,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 4,
"outfielderBlock": 3,
"interceptionWon": 2,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 90,
"touches": 50,
"rating": 6.8,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.0051593
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Be\u00f1at Turrientes",
"firstName": "",
"lastName": "",
"slug": "benat-turrientes",
"shortName": "B. Turrientes",
"position": "M",
"jerseyNumber": "22",
"height": 179,
"userCount": 621,
"id": 980410,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1012435200,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u0646\u064a\u0627\u062a \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u062a\u0648\u0631\u064a\u0646\u062a\u064a\u0633"
}
}
},
"teamId": 2824,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 22,
"accuratePass": 16,
"totalLongBalls": 3,
"accurateLongBalls": 2,
"goalAssist": 0,
"totalCross": 2,
"aerialLost": 2,
"aerialWon": 3,
"duelLost": 5,
"duelWon": 6,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 4,
"outfielderBlock": 1,
"wasFouled": 2,
"fouls": 2,
"minutesPlayed": 90,
"touches": 38,
"rating": 6.9,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sergio G\u00f3mez",
"firstName": "",
"lastName": "",
"slug": "sergio-gomez",
"shortName": "S. G\u00f3mez",
"position": "M",
"jerseyNumber": "17",
"height": 171,
"userCount": 6433,
"id": 855835,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 968025600,
"proposedMarketValueRaw": {
"value": 9700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u064a\u0631\u062c\u064a\u0648 \u062c\u0648\u0645\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0633. \u062c\u0648\u0645\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 14,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 5,
"aerialLost": 6,
"duelLost": 9,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 1,
"totalClearance": 2,
"interceptionWon": 3,
"totalTackle": 5,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 42,
"rating": 6.9,
"possessionLostCtrl": 13,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Brais M\u00e9ndez",
"slug": "brais-mendez",
"shortName": "B. M\u00e9ndez",
"position": "M",
"jerseyNumber": "23",
"height": 184,
"userCount": 2033,
"id": 845385,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852595200,
"proposedMarketValueRaw": {
"value": 39000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0646\u062f\u064a\u0632, \u0628\u0631\u0627\u064a\u0633"
},
"shortNameTranslation": {
"ar": "\u0628. \u0645\u0646\u062f\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 6,
"accuratePass": 5,
"goalAssist": 0,
"duelLost": 4,
"challengeLost": 2,
"totalContest": 1,
"interceptionWon": 2,
"fouls": 1,
"minutesPlayed": 28,
"touches": 10,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Umar Sadiq",
"slug": "umar-sadiq",
"shortName": "U. Sadiq",
"position": "F",
"jerseyNumber": "19",
"height": 192,
"userCount": 2206,
"id": 754710,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854841600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0639\u0645\u0631 \u0635\u0627\u062f\u0642"
},
"shortNameTranslation": {
"ar": "\u0639. \u0635\u0627\u062f\u0642"
}
}
},
"teamId": 2824,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 12,
"accuratePass": 5,
"goalAssist": 0,
"totalCross": 1,
"aerialLost": 3,
"aerialWon": 5,
"duelLost": 8,
"duelWon": 7,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"wonContest": 1,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 66,
"touches": 25,
"rating": 6.7,
"possessionLostCtrl": 13,
"expectedGoals": 0.0193,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Ander Barrenetxea",
"firstName": "",
"lastName": "",
"slug": "ander-barrenetxea",
"shortName": "A. Barrenetxea",
"position": "F",
"jerseyNumber": "7",
"height": 174,
"userCount": 1371,
"id": 966862,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009411200,
"proposedMarketValueRaw": {
"value": 19100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627, \u0623\u0646\u062f\u0631"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u0627\u0631\u0646\u064a\u062a\u0643\u0633\u064a\u0627"
}
}
},
"teamId": 2824,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 5,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"aerialLost": 2,
"duelLost": 10,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 3,
"totalContest": 2,
"wonContest": 1,
"totalClearance": 4,
"interceptionWon": 1,
"wasFouled": 1,
"fouls": 3,
"minutesPlayed": 62,
"touches": 26,
"rating": 6.4,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Martin",
"firstName": "Jon Mart\u00edn",
"slug": "vicente-jon-martin",
"shortName": "J. Martin",
"position": "D",
"jerseyNumber": "31",
"height": 185,
"userCount": 301,
"id": 1466116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1145750400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
}
},
"teamId": 2824,
"shirtNumber": 31,
"jerseyNumber": "31",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 7,
"totalLongBalls": 4,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialWon": 4,
"duelLost": 2,
"duelWon": 4,
"totalClearance": 4,
"outfielderBlock": 1,
"fouls": 2,
"minutesPlayed": 45,
"touches": 22,
"rating": 6.8,
"possessionLostCtrl": 7,
"ratingVersions": {
"original": 6.8,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Javi L\u00f3pez",
"slug": "lopez-javi",
"shortName": "J. L\u00f3pez",
"position": "D",
"jerseyNumber": "12",
"height": 183,
"userCount": 345,
"id": 945404,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0627\u0641\u064a \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u062e. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 2,
"accuratePass": 1,
"goalAssist": 0,
"duelLost": 3,
"duelWon": 1,
"totalContest": 2,
"totalClearance": 3,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 31,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.00503015
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Sheraldo Becker",
"slug": "sheraldo-becker",
"shortName": "S. Becker",
"position": "F",
"jerseyNumber": "11",
"height": 180,
"userCount": 1649,
"id": 352544,
"country": {
"alpha2": "SR",
"alpha3": "SUR",
"name": "Suriname",
"slug": "suriname"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 792288000,
"proposedMarketValueRaw": {
"value": 7300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u0631\u0627\u0644\u062f\u0648 \u0628\u064a\u0643\u0631"
},
"shortNameTranslation": {
"ar": "\u0634. \u0628\u064a\u0643\u0631"
}
}
},
"teamId": 2824,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 2,
"goalAssist": 0,
"duelLost": 1,
"challengeLost": 1,
"totalClearance": 2,
"minutesPlayed": 30,
"touches": 9,
"rating": 6.5,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Aihen Mu\u00f1oz",
"slug": "aihen-munoz",
"shortName": "A. Mu\u00f1oz",
"position": "D",
"jerseyNumber": "3",
"height": 175,
"userCount": 370,
"id": 966441,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 871689600,
"proposedMarketValueRaw": {
"value": 8300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0648\u0646\u0648\u0632, \u0623\u064a\u0647\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0645\u0648\u0646\u0648\u0632"
}
}
},
"teamId": 2824,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 1,
"accuratePass": 1,
"goalAssist": 0,
"aerialLost": 2,
"duelLost": 4,
"duelWon": 2,
"challengeLost": 1,
"totalClearance": 5,
"totalTackle": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 24,
"touches": 14,
"rating": 6.7,
"possessionLostCtrl": 5,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Orri Steinn \u00d3skarsson",
"firstName": "",
"lastName": "",
"slug": "orri-steinn-oskarsson",
"shortName": "O. S. \u00d3skarsson",
"position": "F",
"jerseyNumber": "9",
"height": 186,
"userCount": 2359,
"id": 1026015,
"country": {
"alpha2": "IS",
"alpha3": "ISL",
"name": "Iceland",
"slug": "iceland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1093737600,
"proposedMarketValueRaw": {
"value": 21000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0648\u0631\u064a \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0623\u0648\u0633\u0643\u0627\u0631\u0633\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 10,
"accuratePass": 2,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"aerialLost": 6,
"aerialWon": 1,
"duelLost": 7,
"duelWon": 1,
"dispossessed": 1,
"minutesPlayed": 24,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.4,
"alternative": null
}
},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Unai Marrero",
"firstName": "Unai Marrero",
"slug": "unai-marrero",
"shortName": "U. Marrero",
"position": "G",
"jerseyNumber": "13",
"height": 187,
"userCount": 144,
"id": 1094782,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1002585600,
"proposedMarketValueRaw": {
"value": 330000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0631\u0648 \u060c \u0623\u0648\u0646\u0627\u064a"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0623\u0648\u0646\u0627\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Egoitz Arana",
"firstName": "Egoitz Arana",
"lastName": "",
"slug": "egoitz-arana",
"shortName": "E. Arana",
"position": "G",
"jerseyNumber": "13",
"height": 197,
"userCount": 7,
"id": 1170459,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1014076800,
"proposedMarketValueRaw": {
"value": 54000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0627\u0646\u0627 \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0625\u064a\u062c\u0648\u064a\u062a\u0632"
}
}
},
"teamId": 24360,
"shirtNumber": 35,
"jerseyNumber": "35",
"position": "G",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Pablo Mar\u00edn",
"firstName": "Pablo Mar\u00edn",
"slug": "pablo-marin",
"shortName": "P. Mar\u00edn",
"position": "M",
"jerseyNumber": "28",
"height": 178,
"userCount": 179,
"id": 1139409,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1057190400,
"proposedMarketValueRaw": {
"value": 1600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u064a\u0646 \u060c \u0628\u0627\u0628\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u0628\u0627\u0628\u0644\u0648"
}
}
},
"teamId": 2824,
"shirtNumber": 28,
"jerseyNumber": "28",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Ander Olasagasti",
"slug": "jon-ander-olasagasti",
"shortName": "J. A. Olasagasti",
"position": "M",
"jerseyNumber": "16",
"height": 169,
"userCount": 144,
"id": 1010383,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 966384000,
"proposedMarketValueRaw": {
"value": 1300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646 \u0623\u0646\u062f\u0631 \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
},
"shortNameTranslation": {
"ar": "\u062c. \u0623. \u0623\u0648\u0644\u0627\u0633\u0627\u063a\u0627\u0633\u062a\u064a"
}
}
},
"teamId": 2824,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
},
{
"player": {
"name": "Jon Magunazelaia",
"firstName": "Jon Magunacelaya",
"slug": "jon-magunazelaia",
"shortName": "J. Magunazelaia",
"position": "M",
"jerseyNumber": "25",
"height": 180,
"userCount": 96,
"id": 1134396,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 994982400,
"proposedMarketValueRaw": {
"value": 925000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u062c\u0648\u0646\u0627\u0633\u064a\u0644\u0627\u064a\u0627 \u060c \u062c\u0648\u0646"
},
"shortNameTranslation": {
"ar": "\u0645. \u060c \u062c\u0648\u0646"
}
}
},
"teamId": 2824,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "M",
"substitute": true,
"statistics": {},
"result": "D",
"team": "Real Sociedad"
}
]
[
{
"player": {
"name": "\u00d8rjan Nyland",
"firstName": "",
"lastName": "",
"slug": "orjan-nyland",
"shortName": "\u00d8. Nyland",
"position": "G",
"jerseyNumber": "13",
"height": 192,
"userCount": 741,
"id": 22209,
"country": {
"alpha2": "NO",
"alpha3": "NOR",
"name": "Norway",
"slug": "norway"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 652924800,
"proposedMarketValueRaw": {
"value": 1400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0644\u0627\u0646\u062f, \u0623\u0648\u0631\u062c\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0623. \u0646\u064a\u0644\u0627\u0646\u062f"
}
}
},
"teamId": 2833,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 10,
"totalLongBalls": 6,
"goalAssist": 0,
"savedShotsFromInsideTheBox": 1,
"saves": 2,
"minutesPlayed": 90,
"touches": 19,
"rating": 6.5,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"goalsPrevented": -0.2803
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jos\u00e9 \u00c1ngel Carmona",
"firstName": "",
"lastName": "",
"slug": "jose-angel-carmona",
"shortName": "J. \u00c1. Carmona",
"position": "D",
"jerseyNumber": "32",
"height": 183,
"userCount": 656,
"id": 1015240,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 4600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0643\u0627\u0631\u0645\u0648\u0646\u0627 \u060c \u062c\u0648\u0632\u064a\u0647"
},
"shortNameTranslation": {
"ar": "\u0643. \u060c \u062c\u0648\u0632\u064a\u0647"
}
}
},
"teamId": 2833,
"shirtNumber": 32,
"jerseyNumber": "32",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 32,
"accuratePass": 27,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 3,
"dispossessed": 2,
"totalClearance": 2,
"totalTackle": 2,
"minutesPlayed": 82,
"touches": 50,
"rating": 6.5,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lo\u00efc Bad\u00e9",
"firstName": "",
"lastName": "",
"slug": "loic-bade",
"shortName": "L. Bad\u00e9",
"position": "D",
"jerseyNumber": "22",
"height": 191,
"userCount": 2145,
"id": 1006489,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 955411200,
"proposedMarketValueRaw": {
"value": 19400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u064a\u0643 \u0628\u0627\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0628\u0627\u062f\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 60,
"accuratePass": 51,
"totalLongBalls": 6,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 2,
"wonContest": 2,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 73,
"rating": 6.9,
"possessionLostCtrl": 11,
"expectedGoals": 0.084,
"keyPass": 1,
"ratingVersions": {
"original": 6.9,
"alternative": null
},
"expectedAssists": 0.00579528
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Marc\u00e3o",
"slug": "marcao",
"shortName": "Marc\u00e3o",
"position": "D",
"jerseyNumber": "23",
"height": 185,
"userCount": 890,
"id": 840951,
"country": {
"alpha2": "BR",
"alpha3": "BRA",
"name": "Brazil",
"slug": "brazil"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 833932800,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
},
"shortNameTranslation": {
"ar": "\u0645\u0627\u0631\u0643\u0627\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "D",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 68,
"accuratePass": 58,
"totalLongBalls": 2,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 1,
"duelWon": 5,
"totalClearance": 4,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 4,
"minutesPlayed": 90,
"touches": 81,
"rating": 6.6,
"possessionLostCtrl": 11,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Valent\u00edn Barco",
"firstName": "Valent\u00edn Barco",
"lastName": "",
"slug": "valentin-barco",
"shortName": "V. Barco",
"position": "D",
"jerseyNumber": "19",
"height": 172,
"userCount": 7695,
"id": 1127057,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1090540800,
"proposedMarketValueRaw": {
"value": 11000000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 19,
"jerseyNumber": "19",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 41,
"accuratePass": 34,
"totalLongBalls": 3,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 10,
"accurateCross": 3,
"duelLost": 7,
"duelWon": 10,
"challengeLost": 2,
"totalContest": 6,
"wonContest": 1,
"shotOffTarget": 2,
"blockedScoringAttempt": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 3,
"minutesPlayed": 90,
"touches": 89,
"rating": 7,
"possessionLostCtrl": 21,
"expectedGoals": 0.1434,
"keyPass": 4,
"ratingVersions": {
"original": 7,
"alternative": null
},
"expectedAssists": 0.181948
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Lucien Agoum\u00e9",
"slug": "lucien-agoume",
"shortName": "L. Agoum\u00e9",
"position": "M",
"jerseyNumber": "18",
"height": 185,
"userCount": 1269,
"id": 960006,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1013212800,
"proposedMarketValueRaw": {
"value": 6200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0633\u064a\u0627\u0646 \u0623\u063a\u0648\u0645"
},
"shortNameTranslation": {
"ar": "\u0644. \u0623\u063a\u0648\u0645"
}
}
},
"teamId": 2833,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 47,
"accuratePass": 43,
"goalAssist": 0,
"aerialLost": 1,
"duelLost": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"fouls": 3,
"minutesPlayed": 82,
"touches": 57,
"rating": 6.3,
"possessionLostCtrl": 7,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0157733
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Albert Sambi Lokonga",
"slug": "albert-sambi-lokonga",
"shortName": "A. S. Lokonga",
"position": "M",
"jerseyNumber": "12",
"height": 183,
"userCount": 3063,
"id": 901892,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 940550400,
"proposedMarketValueRaw": {
"value": 12400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0644\u0628\u064a\u0631\u062a \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0644\u0648\u0643\u0648\u0646\u062c\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 12,
"jerseyNumber": "12",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 54,
"accuratePass": 52,
"totalLongBalls": 4,
"accurateLongBalls": 4,
"goalAssist": 0,
"aerialLost": 1,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 5,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 2,
"wasFouled": 2,
"minutesPlayed": 90,
"touches": 64,
"rating": 7.3,
"possessionLostCtrl": 3,
"expectedGoals": 0.0224,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.0141227
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Dodi Lukebakio",
"slug": "dodi-lukebakio",
"shortName": "D. Lukebakio",
"position": "F",
"jerseyNumber": "11",
"height": 187,
"userCount": 3647,
"id": 823631,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 875059200,
"proposedMarketValueRaw": {
"value": 11300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648, \u062f\u0648\u062f\u064a"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0643\u064a\u0628\u0627\u0643\u064a\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"duelLost": 4,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 5,
"wonContest": 3,
"onTargetScoringAttempt": 2,
"blockedScoringAttempt": 1,
"minutesPlayed": 65,
"touches": 19,
"rating": 6.7,
"possessionLostCtrl": 4,
"expectedGoals": 0.1818,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0340839
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Juanlu S\u00e1nchez",
"firstName": "",
"lastName": "",
"slug": "juanlu-sanchez",
"shortName": "J. S\u00e1nchez",
"position": "M",
"jerseyNumber": "26",
"height": 186,
"userCount": 863,
"id": 1010655,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1060905600,
"proposedMarketValueRaw": {
"value": 14600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0644\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 26,
"jerseyNumber": "26",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 16,
"accuratePass": 11,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 1,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"totalTackle": 1,
"minutesPlayed": 65,
"touches": 21,
"rating": 6.5,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 6.5,
"alternative": null
},
"expectedAssists": 0.010098
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Chidera Ejuke",
"firstName": "",
"lastName": "",
"slug": "chidera-ejuke",
"shortName": "C. Ejuke",
"position": "M",
"jerseyNumber": "21",
"height": 176,
"userCount": 1476,
"id": 875890,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 883699200,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0634\u064a\u062f\u064a\u0631\u0627 \u0625\u062c\u0648\u0643\u064a"
},
"shortNameTranslation": {
"ar": "\u0634. \u0625\u062c\u0648\u0643\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 48,
"accuratePass": 39,
"totalLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 6,
"duelWon": 7,
"challengeLost": 2,
"dispossessed": 1,
"totalContest": 7,
"wonContest": 4,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalTackle": 1,
"wasFouled": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 75,
"rating": 7.3,
"possessionLostCtrl": 20,
"expectedGoals": 0.1223,
"keyPass": 3,
"ratingVersions": {
"original": 7.3,
"alternative": null
},
"expectedAssists": 0.12565
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Isaac Romero",
"firstName": "",
"lastName": "",
"slug": "romero-isaac",
"shortName": "I. Romero",
"position": "F",
"jerseyNumber": "7",
"height": 184,
"userCount": 1487,
"id": 1018190,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 958608000,
"proposedMarketValueRaw": {
"value": 18500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 7,
"jerseyNumber": "7",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 14,
"accuratePass": 10,
"totalLongBalls": 2,
"accurateLongBalls": 1,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 3,
"duelWon": 2,
"dispossessed": 2,
"shotOffTarget": 3,
"onTargetScoringAttempt": 1,
"blockedScoringAttempt": 1,
"totalClearance": 2,
"totalTackle": 1,
"penaltyConceded": 1,
"wasFouled": 1,
"fouls": 2,
"totalOffside": 1,
"minutesPlayed": 90,
"touches": 31,
"rating": 6.7,
"possessionLostCtrl": 9,
"expectedGoals": 0.3349,
"keyPass": 1,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0712866
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Jes\u00fas Navas",
"slug": "jesus-navas",
"shortName": "J. Navas",
"position": "D",
"jerseyNumber": "16",
"height": 170,
"userCount": 2495,
"id": 11869,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 501379200,
"proposedMarketValueRaw": {
"value": 2400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u0627\u0641\u0627\u0633, \u062e\u064a\u0633\u0648\u0633"
},
"shortNameTranslation": {
"ar": "\u062e. \u0646\u0627\u0641\u0627\u0633"
}
}
},
"teamId": 2833,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"totalLongBalls": 1,
"goalAssist": 0,
"totalClearance": 1,
"totalOffside": 1,
"minutesPlayed": 25,
"touches": 11,
"rating": 6.3,
"possessionLostCtrl": 2,
"ratingVersions": {
"original": 6.3,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Peque Fern\u00e1ndez",
"slug": "peque-fernandez",
"shortName": "P. Fern\u00e1ndez",
"position": "M",
"jerseyNumber": "14",
"height": 168,
"userCount": 867,
"id": 997033,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1033689600,
"proposedMarketValueRaw": {
"value": 5500000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 8,
"goalAssist": 0,
"duelLost": 3,
"challengeLost": 2,
"dispossessed": 1,
"blockedScoringAttempt": 1,
"totalOffside": 1,
"minutesPlayed": 25,
"touches": 13,
"rating": 6.4,
"possessionLostCtrl": 2,
"expectedGoals": 0.0773,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.0209594
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Djibril Sow",
"slug": "djibril-sow",
"shortName": "D. Sow",
"position": "M",
"jerseyNumber": "20",
"height": 184,
"userCount": 957,
"id": 799054,
"country": {
"alpha2": "CH",
"alpha3": "CHE",
"name": "Switzerland",
"slug": "switzerland"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 855187200,
"proposedMarketValueRaw": {
"value": 7100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0648, \u062c\u0628\u0631\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0633\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 7,
"accuratePass": 6,
"totalLongBalls": 1,
"accurateLongBalls": 1,
"goalAssist": 0,
"minutesPlayed": 8,
"touches": 7,
"rating": 6.6,
"possessionLostCtrl": 1,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Stanis Idumbo Muzambo",
"firstName": "Stanis Idumbo Muzambo",
"lastName": "",
"slug": "stanis-idumbo-muzambo",
"shortName": "S. I. Muzambo",
"position": "F",
"jerseyNumber": "27",
"height": 170,
"userCount": 614,
"id": 1149152,
"country": {
"alpha2": "BE",
"alpha3": "BEL",
"name": "Belgium",
"slug": "belgium"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1120003200,
"proposedMarketValueRaw": {
"value": 755000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 2,
"dispossessed": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 8,
"touches": 9,
"rating": 6.8,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.8,
"alternative": null
},
"expectedAssists": 0.00916554
},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Mat\u00edas \u00c1rbol",
"firstName": "",
"lastName": "",
"slug": "matias-arbol",
"shortName": "M. \u00c1rbol",
"position": "G",
"jerseyNumber": "1",
"height": 184,
"userCount": 26,
"id": 1192489,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1031788800,
"proposedMarketValueRaw": {
"value": 96000,
"currency": "EUR"
}
},
"teamId": 7762,
"shirtNumber": 33,
"jerseyNumber": "33",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "\u00c1lvaro Fern\u00e1ndez",
"slug": "alvaro-fernandez",
"shortName": "\u00c1. Fern\u00e1ndez",
"position": "G",
"jerseyNumber": "1",
"height": 186,
"userCount": 259,
"id": 852412,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 892425600,
"proposedMarketValueRaw": {
"value": 2600000,
"currency": "EUR"
}
},
"teamId": 2833,
"shirtNumber": 1,
"jerseyNumber": "1",
"position": "G",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Gonzalo Montiel",
"slug": "gonzalo-montiel",
"shortName": "G. Montiel",
"position": "D",
"jerseyNumber": "15",
"height": 175,
"userCount": 9011,
"id": 822933,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 852076800,
"proposedMarketValueRaw": {
"value": 8600000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u0646\u0632\u0627\u0644\u0648 \u0645\u0648\u0646\u062a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u0645\u0648\u0646\u062a\u064a\u0644"
}
}
},
"teamId": 2833,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Tanguy Nianzou",
"firstName": "",
"lastName": "",
"slug": "tanguy-nianzou",
"shortName": "T. Nianzou",
"position": "D",
"jerseyNumber": "24",
"height": 192,
"userCount": 1394,
"id": 1003007,
"country": {
"alpha2": "FR",
"alpha3": "FRA",
"name": "France",
"slug": "france"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1023408000,
"proposedMarketValueRaw": {
"value": 2900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0646\u064a\u0627\u0646\u0632\u0648 \u062a\u0627\u0646\u062c\u0648\u064a \u0643\u0648\u0627\u0633\u064a"
},
"shortNameTranslation": {
"ar": "\u0646. \u062a. \u0643\u0648\u0627\u0633\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Adri\u00e0 Pedrosa",
"slug": "adria-pedrosa",
"shortName": "A. Pedrosa",
"position": "D",
"jerseyNumber": "3",
"height": 176,
"userCount": 568,
"id": 928672,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 895017600,
"proposedMarketValueRaw": {
"value": 5800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u064a\u062f\u0631\u0648\u0633\u0627, \u0623\u062f\u0631\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0623. \u0628\u064a\u062f\u0631\u0648\u0633\u0627"
}
}
},
"teamId": 2833,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kike Salas",
"firstName": "",
"lastName": "",
"slug": "kike-salas",
"shortName": "K. Salas",
"position": "D",
"jerseyNumber": "4",
"height": 186,
"userCount": 537,
"id": 1097719,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1009843200,
"proposedMarketValueRaw": {
"value": 8800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0627\u0633 \u060c \u0643\u0627\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u0633. \u060c \u0643\u0627\u064a\u0643"
}
}
},
"teamId": 2833,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Nemanja Gudelj",
"firstName": "",
"lastName": "",
"slug": "nemanja-gudelj",
"shortName": "N. Gudelj",
"position": "M",
"jerseyNumber": "6",
"height": 187,
"userCount": 1704,
"id": 68332,
"country": {
"alpha2": "RS",
"alpha3": "SRB",
"name": "Serbia",
"slug": "serbia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 690249600,
"proposedMarketValueRaw": {
"value": 3400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0648\u062f\u064a\u0644\u064a, \u0646\u064a\u0645\u0627\u0646\u064a\u0627"
},
"shortNameTranslation": {
"ar": "\u0646. \u063a\u0648\u062f\u064a\u0644\u064a"
}
}
},
"teamId": 2833,
"shirtNumber": 6,
"jerseyNumber": "6",
"position": "M",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Kelechi Iheanacho",
"firstName": "",
"lastName": "",
"slug": "kelechi-iheanacho",
"shortName": "K. Iheanacho",
"position": "F",
"jerseyNumber": "9",
"height": 184,
"userCount": 5202,
"id": 359642,
"country": {
"alpha2": "NG",
"alpha3": "NGA",
"name": "Nigeria",
"slug": "nigeria"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 844300800,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648, \u064a\u0644\u064a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u064a. \u0625\u064a\u0647\u064a\u0646\u0627\u0634\u0648"
}
}
},
"teamId": 2833,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": true,
"statistics": {},
"result": "L",
"team": "Sevilla"
},
{
"player": {
"name": "Paulo Gazzaniga",
"slug": "paulo-gazzaniga",
"shortName": "P. Gazzaniga",
"position": "G",
"jerseyNumber": "13",
"height": 196,
"userCount": 1954,
"id": 164343,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina",
"slug": "argentina"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 694310400,
"proposedMarketValueRaw": {
"value": 4099999,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627, \u0628\u0627\u0648\u0644\u0648"
},
"shortNameTranslation": {
"ar": "\u0628. \u063a\u0627\u0632\u0627\u0646\u064a\u062c\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 13,
"jerseyNumber": "13",
"position": "G",
"substitute": false,
"statistics": {
"totalPass": 33,
"accuratePass": 25,
"totalLongBalls": 14,
"accurateLongBalls": 6,
"goalAssist": 0,
"goodHighClaim": 1,
"savedShotsFromInsideTheBox": 3,
"saves": 5,
"minutesPlayed": 90,
"touches": 44,
"rating": 8.1,
"possessionLostCtrl": 9,
"ratingVersions": {
"original": 8.1,
"alternative": null
},
"goalsPrevented": 0.3746
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Alejandro Franc\u00e9s",
"slug": "alejandro-frances",
"shortName": "A. Franc\u00e9s",
"position": "D",
"jerseyNumber": "16",
"height": 180,
"userCount": 596,
"id": 1002347,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1028160000,
"proposedMarketValueRaw": {
"value": 4700000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 16,
"jerseyNumber": "16",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 45,
"accuratePass": 38,
"totalLongBalls": 7,
"accurateLongBalls": 4,
"goalAssist": 0,
"duelLost": 6,
"duelWon": 4,
"challengeLost": 2,
"totalContest": 3,
"blockedScoringAttempt": 2,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 89,
"touches": 76,
"rating": 7.2,
"possessionLostCtrl": 12,
"expectedGoals": 0.0655,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.0131139
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "David L\u00f3pez",
"slug": "david-lopez",
"shortName": "D. L\u00f3pez",
"position": "D",
"jerseyNumber": "5",
"height": 185,
"userCount": 745,
"id": 135116,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 623894400,
"proposedMarketValueRaw": {
"value": 2300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0648\u0628\u064a\u0632, \u062f\u0627\u0641\u064a\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 5,
"jerseyNumber": "5",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 66,
"accuratePass": 63,
"totalLongBalls": 4,
"accurateLongBalls": 3,
"goalAssist": 0,
"totalCross": 1,
"aerialWon": 1,
"duelWon": 2,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 4,
"interceptionWon": 1,
"minutesPlayed": 90,
"touches": 76,
"rating": 7.4,
"possessionLostCtrl": 4,
"expectedGoals": 0.0459,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.00734289
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Daley Blind",
"firstName": "",
"lastName": "",
"slug": "daley-blind",
"shortName": "D. Blind",
"position": "D",
"jerseyNumber": "17",
"height": 180,
"userCount": 3328,
"id": 44864,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 636940800,
"proposedMarketValueRaw": {
"value": 3100000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0644\u064a \u0628\u0644\u0627\u064a\u0646\u062f"
},
"shortNameTranslation": {
"ar": "\u062f. \u0628\u0644\u0627\u064a\u0646\u062f"
}
}
},
"teamId": 24264,
"shirtNumber": 17,
"jerseyNumber": "17",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 86,
"accuratePass": 79,
"totalLongBalls": 11,
"accurateLongBalls": 6,
"goalAssist": 0,
"totalCross": 1,
"duelWon": 1,
"totalContest": 1,
"wonContest": 1,
"totalClearance": 2,
"outfielderBlock": 1,
"interceptionWon": 2,
"minutesPlayed": 90,
"touches": 96,
"rating": 7.5,
"possessionLostCtrl": 8,
"keyPass": 1,
"ratingVersions": {
"original": 7.5,
"alternative": null
},
"expectedAssists": 0.0256282
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Miguel Guti\u00e9rrez",
"slug": "miguel-gutierrez",
"shortName": "M. Guti\u00e9rrez",
"position": "D",
"jerseyNumber": "3",
"height": 180,
"userCount": 3440,
"id": 908716,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 996192000,
"proposedMarketValueRaw": {
"value": 27000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062c\u0648\u062a\u064a\u0631\u064a\u0632 \u060c \u0645\u064a\u063a\u064a\u0644"
},
"shortNameTranslation": {
"ar": "\u062c. \u060c \u0645\u064a\u063a\u064a\u0644"
}
}
},
"teamId": 24264,
"shirtNumber": 3,
"jerseyNumber": "3",
"position": "D",
"substitute": false,
"statistics": {
"totalPass": 34,
"accuratePass": 31,
"totalLongBalls": 4,
"accurateLongBalls": 1,
"goalAssist": 1,
"totalCross": 3,
"duelLost": 3,
"duelWon": 5,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"bigChanceCreated": 1,
"onTargetScoringAttempt": 1,
"totalClearance": 1,
"outfielderBlock": 1,
"totalTackle": 4,
"fouls": 1,
"minutesPlayed": 90,
"touches": 57,
"rating": 8,
"possessionLostCtrl": 7,
"expectedGoals": 0.0191,
"keyPass": 1,
"ratingVersions": {
"original": 8,
"alternative": null
},
"expectedAssists": 0.582873
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Iv\u00e1n Mart\u00edn",
"slug": "ivan-martin",
"shortName": "I. Mart\u00edn",
"position": "M",
"jerseyNumber": "23",
"height": 178,
"userCount": 987,
"id": 973699,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 918950400,
"proposedMarketValueRaw": {
"value": 13700000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0645\u0627\u0631\u062a\u0646, \u0625\u064a\u0641\u0627\u0646"
},
"shortNameTranslation": {
"ar": "\u0625. \u0645\u0627\u0631\u062a\u0646"
}
}
},
"teamId": 24264,
"shirtNumber": 23,
"jerseyNumber": "23",
"position": "M",
"substitute": false,
"captain": true,
"statistics": {
"totalPass": 21,
"accuratePass": 19,
"goalAssist": 0,
"duelLost": 2,
"duelWon": 2,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"onTargetScoringAttempt": 1,
"goals": 1,
"totalTackle": 1,
"minutesPlayed": 58,
"touches": 30,
"rating": 7.4,
"possessionLostCtrl": 5,
"expectedGoals": 0.6074,
"keyPass": 1,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0198521
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Oriol Romeu",
"firstName": "",
"lastName": "",
"slug": "oriol-romeu",
"shortName": "O. Romeu",
"position": "M",
"jerseyNumber": "14",
"height": 182,
"userCount": 9077,
"id": 69416,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 685670400,
"proposedMarketValueRaw": {
"value": 1900000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0631\u0648\u0645\u064a\u0648, \u0623\u0648\u0631\u064a\u0648\u0644"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u0645\u064a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 14,
"jerseyNumber": "14",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 35,
"accuratePass": 31,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 5,
"duelWon": 7,
"challengeLost": 1,
"outfielderBlock": 1,
"interceptionWon": 1,
"totalTackle": 6,
"wasFouled": 1,
"fouls": 4,
"minutesPlayed": 90,
"touches": 48,
"rating": 7.1,
"possessionLostCtrl": 6,
"ratingVersions": {
"original": 7.1,
"alternative": null
},
"expectedAssists": 0.00727281
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Yangel Herrera",
"slug": "yangel-herrera",
"shortName": "Y. Herrera",
"position": "M",
"jerseyNumber": "21",
"height": 184,
"userCount": 4001,
"id": 839585,
"country": {
"alpha2": "VE",
"alpha3": "VEN",
"name": "Venezuela",
"slug": "venezuela"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 884131200,
"proposedMarketValueRaw": {
"value": 23000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u064a\u0627\u0646\u062e\u064a\u0644 \u0647\u064a\u0631\u064a\u0631\u0627"
},
"shortNameTranslation": {
"ar": "\u064a. \u0647\u064a\u0631\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 21,
"jerseyNumber": "21",
"position": "M",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 17,
"goalAssist": 0,
"totalCross": 1,
"duelLost": 2,
"duelWon": 3,
"challengeLost": 1,
"dispossessed": 1,
"totalContest": 1,
"wonContest": 1,
"shotOffTarget": 1,
"totalClearance": 1,
"interceptionWon": 1,
"totalTackle": 1,
"wasFouled": 1,
"minutesPlayed": 45,
"touches": 29,
"rating": 6.9,
"possessionLostCtrl": 4,
"expectedGoals": 0.0124,
"ratingVersions": {
"original": 6.9,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Viktor Tsygankov",
"firstName": "",
"lastName": "",
"slug": "viktor-tsygankov",
"shortName": "V. Tsygankov",
"position": "M",
"jerseyNumber": "8",
"height": 178,
"userCount": 5498,
"id": 319735,
"country": {
"alpha2": "UA",
"alpha3": "UKR",
"name": "Ukraine",
"slug": "ukraine"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 879552000,
"proposedMarketValueRaw": {
"value": 31000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0641\u064a\u0643\u062a\u0648\u0631 \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
},
"shortNameTranslation": {
"ar": "\u0641. \u062a\u0633\u064a\u063a\u0627\u0646\u0643\u0648\u0641"
}
}
},
"teamId": 24264,
"shirtNumber": 8,
"jerseyNumber": "8",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 17,
"accuratePass": 14,
"goalAssist": 0,
"totalCross": 5,
"accurateCross": 1,
"aerialLost": 1,
"duelLost": 3,
"duelWon": 2,
"totalContest": 2,
"wonContest": 1,
"totalTackle": 1,
"fouls": 1,
"minutesPlayed": 45,
"touches": 31,
"rating": 6.7,
"possessionLostCtrl": 10,
"ratingVersions": {
"original": 6.7,
"alternative": null
},
"expectedAssists": 0.0821818
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Abel Ru\u00edz",
"slug": "abel-ruiz",
"shortName": "A. Ru\u00edz",
"position": "F",
"jerseyNumber": "9",
"height": 182,
"userCount": 2040,
"id": 826013,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 949017600,
"proposedMarketValueRaw": {
"value": 11400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0628\u064a\u0644 \u0631\u0648\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u0631\u0648\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 9,
"jerseyNumber": "9",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 20,
"accuratePass": 17,
"totalLongBalls": 2,
"accurateLongBalls": 2,
"goalAssist": 0,
"aerialLost": 2,
"aerialWon": 2,
"duelLost": 5,
"duelWon": 5,
"totalContest": 3,
"wonContest": 1,
"onTargetScoringAttempt": 2,
"goals": 1,
"wasFouled": 2,
"fouls": 1,
"minutesPlayed": 90,
"touches": 30,
"rating": 7.4,
"possessionLostCtrl": 7,
"expectedGoals": 0.8344,
"ratingVersions": {
"original": 7.4,
"alternative": null
},
"expectedAssists": 0.0183084
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Bryan Gil",
"slug": "bryan-gil",
"shortName": "B. Gil",
"position": "M",
"jerseyNumber": "20",
"height": 176,
"userCount": 3933,
"id": 910026,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 981849600,
"proposedMarketValueRaw": {
"value": 14400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627, \u0628\u0631\u0627\u064a\u0646"
},
"shortNameTranslation": {
"ar": "\u0628. \u0633\u0627\u0644\u0641\u0627\u062a\u064a\u0631\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 20,
"jerseyNumber": "20",
"position": "F",
"substitute": false,
"statistics": {
"totalPass": 21,
"accuratePass": 18,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 7,
"duelWon": 8,
"challengeLost": 1,
"dispossessed": 2,
"totalContest": 6,
"wonContest": 3,
"shotOffTarget": 1,
"totalClearance": 1,
"totalTackle": 5,
"fouls": 2,
"minutesPlayed": 89,
"touches": 42,
"rating": 7.2,
"possessionLostCtrl": 11,
"expectedGoals": 0.0504,
"keyPass": 1,
"ratingVersions": {
"original": 7.2,
"alternative": null
},
"expectedAssists": 0.184901
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Jhon Sol\u00eds",
"firstName": "Jhon Solis",
"slug": "jhon-solis",
"shortName": "J. Sol\u00eds",
"position": "M",
"jerseyNumber": "22",
"height": 186,
"userCount": 1544,
"id": 1106573,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1096761600,
"proposedMarketValueRaw": {
"value": 4400000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "Solis, Jhon Elmer"
},
"shortNameTranslation": {
"ar": "J. E. Solis"
}
}
},
"teamId": 24264,
"shirtNumber": 22,
"jerseyNumber": "22",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 14,
"accuratePass": 11,
"goalAssist": 0,
"aerialWon": 1,
"duelLost": 1,
"duelWon": 1,
"challengeLost": 1,
"totalClearance": 1,
"minutesPlayed": 45,
"touches": 17,
"rating": 6.5,
"possessionLostCtrl": 4,
"ratingVersions": {
"original": 6.5,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnaut Danjuma",
"slug": "arnaut-danjuma",
"shortName": "A. Danjuma",
"position": "F",
"jerseyNumber": "11",
"height": 178,
"userCount": 3363,
"id": 827064,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 854668800,
"proposedMarketValueRaw": {
"value": 12300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0627\u0646\u062c\u0648\u0645\u0627, \u0623\u0631\u0646\u0648\u062a"
},
"shortNameTranslation": {
"ar": "\u0623. \u062f\u0627\u0646\u062c\u0648\u0645\u0627"
}
}
},
"teamId": 24264,
"shirtNumber": 11,
"jerseyNumber": "11",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 9,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 2,
"accurateCross": 1,
"duelLost": 2,
"duelWon": 1,
"challengeLost": 1,
"totalContest": 1,
"bigChanceMissed": 1,
"shotOffTarget": 1,
"interceptionWon": 1,
"totalTackle": 1,
"minutesPlayed": 45,
"touches": 16,
"rating": 6.3,
"possessionLostCtrl": 5,
"expectedGoals": 0.3003,
"keyPass": 1,
"ratingVersions": {
"original": 6.3,
"alternative": null
},
"expectedAssists": 0.0333301
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Y\u00e1ser Asprilla",
"firstName": "Yaser Asprilla",
"lastName": "",
"slug": "yaser-asprilla",
"shortName": "Y. Asprilla",
"position": "M",
"jerseyNumber": "10",
"height": 185,
"userCount": 5867,
"id": 1092769,
"country": {
"alpha2": "CO",
"alpha3": "COL",
"name": "Colombia",
"slug": "colombia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1069200000,
"proposedMarketValueRaw": {
"value": 19300000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 10,
"jerseyNumber": "10",
"position": "M",
"substitute": true,
"statistics": {
"totalPass": 8,
"accuratePass": 7,
"goalAssist": 0,
"totalCross": 1,
"accurateCross": 1,
"duelLost": 6,
"challengeLost": 1,
"totalContest": 2,
"shotOffTarget": 1,
"totalClearance": 1,
"fouls": 3,
"minutesPlayed": 32,
"touches": 16,
"rating": 6.4,
"possessionLostCtrl": 6,
"expectedGoals": 0.0181,
"keyPass": 1,
"ratingVersions": {
"original": 6.4,
"alternative": null
},
"expectedAssists": 0.127281
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Arnau Mart\u00ednez",
"firstName": "Arnau Martinez",
"slug": "arnau-martinez",
"shortName": "A. Mart\u00ednez",
"position": "D",
"jerseyNumber": "4",
"height": 181,
"userCount": 1610,
"id": 1084081,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1051228800,
"proposedMarketValueRaw": {
"value": 10800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0623\u0631\u0646\u0627\u0648 \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0623. \u060c \u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 4,
"jerseyNumber": "4",
"position": "D",
"substitute": true,
"statistics": {
"totalPass": 4,
"accuratePass": 4,
"goalAssist": 0,
"totalCross": 2,
"duelWon": 1,
"totalTackle": 1,
"minutesPlayed": 9,
"touches": 10,
"rating": 6.7,
"possessionLostCtrl": 3,
"ratingVersions": {
"original": 6.7,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Portu",
"firstName": "",
"lastName": "",
"slug": "portu",
"shortName": "Portu",
"position": "F",
"jerseyNumber": "24",
"height": 167,
"userCount": 1016,
"id": 218616,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 706406400,
"proposedMarketValueRaw": {
"value": 3800000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
},
"shortNameTranslation": {
"ar": "\u0628\u0648\u0631\u062a\u0648"
}
}
},
"teamId": 24264,
"shirtNumber": 24,
"jerseyNumber": "24",
"position": "F",
"substitute": true,
"statistics": {
"totalPass": 3,
"accuratePass": 3,
"goalAssist": 0,
"duelLost": 1,
"duelWon": 1,
"wasFouled": 1,
"fouls": 1,
"minutesPlayed": 9,
"touches": 5,
"rating": 6.6,
"ratingVersions": {
"original": 6.6,
"alternative": null
}
},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Pau L\u00f3pez",
"slug": "pau-lopez",
"shortName": "P. L\u00f3pez",
"position": "G",
"jerseyNumber": "25",
"height": 189,
"userCount": 1021,
"id": 548848,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 787276800,
"proposedMarketValueRaw": {
"value": 8000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0628\u0627\u0648 \u0644\u0648\u0628\u064a\u0632"
},
"shortNameTranslation": {
"ar": "\u0628. \u0644\u0648\u0628\u064a\u0632"
}
}
},
"teamId": 24264,
"shirtNumber": 25,
"jerseyNumber": "25",
"position": "G",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Ladislav Krej\u010d\u00ed",
"slug": "ladislav-krejci",
"shortName": "L. Krej\u010d\u00ed",
"position": "D",
"jerseyNumber": "18",
"height": 191,
"userCount": 1561,
"id": 856250,
"country": {
"alpha2": "CZ",
"alpha3": "CZE",
"name": "Czechia",
"slug": "czechia"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 924566400,
"proposedMarketValueRaw": {
"value": 9300000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u0644\u0627\u062f\u064a\u0633\u0644\u0627\u0641 \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
},
"shortNameTranslation": {
"ar": "\u0644. \u0643\u0631\u064a\u064a\u062a\u0634\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 18,
"jerseyNumber": "18",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Juanpe",
"slug": "juanpe",
"shortName": "Juanpe",
"position": "D",
"jerseyNumber": "15",
"height": 189,
"userCount": 262,
"id": 129861,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain",
"slug": "spain"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 672969600,
"proposedMarketValueRaw": {
"value": 1000000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
},
"shortNameTranslation": {
"ar": "\u062e\u0648\u0627\u0646\u0628\u064a"
}
}
},
"teamId": 24264,
"shirtNumber": 15,
"jerseyNumber": "15",
"position": "D",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Gabriel Misehouy",
"firstName": "",
"lastName": "",
"slug": "gabriel-misehouy",
"shortName": "G. Misehouy",
"position": "M",
"jerseyNumber": "27",
"height": 173,
"userCount": 724,
"id": 1142566,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 1121644800,
"proposedMarketValueRaw": {
"value": 970000,
"currency": "EUR"
}
},
"teamId": 24264,
"shirtNumber": 27,
"jerseyNumber": "27",
"position": "M",
"substitute": true,
"statistics": {},
"result": "W",
"team": "Girona FC"
},
{
"player": {
"name": "Donny van de Beek",
"slug": "donny-van-de-beek",
"shortName": "D. v. d. Beek",
"position": "M",
"jerseyNumber": "6",
"height": 183,
"userCount": 11397,
"id": 361790,
"country": {
"alpha2": "NL",
"alpha3": "NLD",
"name": "Netherlands",
"slug": "netherlands"
},
"marketValueCurrency": "EUR",
"dateOfBirthTimestamp": 861321600,
"proposedMarketValueRaw": {
"value": 5200000,
"currency": "EUR"
},
"fieldTranslations": {
"nameTranslation": {
"ar": "\u062f\u0648\u0646\u064a \u0641\u0627\u0646 \u062f\u064a \u0628\u064a\u0643"
},
"shortNameTranslation": {
"ar": "\u062f. \u0641. \u062f. \u0628\u064a\u0643"
}
}
},
"teamId": 24264,
"shir